1ACL_CMP(3) BSD Library Functions Manual ACL_CMP(3)
2
4 acl_cmp — compare two ACLs
5
7 Linux Access Control Lists library (libacl, -lacl).
8
10 #include <sys/types.h>
11 #include <acl/libacl.h>
12
13 int
14 acl_cmp(acl_t acl1, acl_t acl2);
15
17 The acl_cmp() function compares the ACLs pointed to by the arguments acl1
18 and acl2 for equality. The two ACLs are considered equal if for each
19 entry in acl1 there is an entry in acl2 with matching tag type, quali‐
20 fier, and permissions, and vice versa.
21
23 If successful, the acl_cmp() function returns 0 if the two ACLs acl1 and
24 acl2 are equal, and 1 if they differ. Otherwise, the value -1 is returned
25 and the global variable errno is set to indicate the error.
26
28 If any of the following conditions occur, the acl_cmp() function returns
29 -1 and sets errno to the corresponding value:
30
31 [EINVAL] The argument acl1 is not a valid pointer to an ACL.
32
33 The argument acl2 is not a valid pointer to an ACL.
34
36 This is a non-portable, Linux specific extension to the ACL manipulation
37 functions defined in IEEE Std 1003.1e draft 17 (“POSIX.1e”, abandoned).
38
40 acl(5)
41
43 Written by Andreas Gruenbacher <a.gruenbacher@bestbits.at>.
44
45Linux ACL March 23, 2002 Linux ACL