diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2000-01-28 20:07:00 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2000-01-28 20:07:00 +0000 |
| commit | a889d1fb766450bff9b27c3bccfe18fc39cd753d (patch) | |
| tree | 260717562f5f30fdf5974c527396b35b042ecd45 /lib/libc/posix1e/acl_valid.c | |
| parent | 49de1b57590b12fbd713f082928de3bf34fbf4b6 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_valid.c')
| -rw-r--r-- | lib/libc/posix1e/acl_valid.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/libc/posix1e/acl_valid.c b/lib/libc/posix1e/acl_valid.c index 69d0f1d84c8b..efb91ed73e42 100644 --- a/lib/libc/posix1e/acl_valid.c +++ b/lib/libc/posix1e/acl_valid.c @@ -41,12 +41,11 @@ * * Implemented by calling the acl_check routine in acl_support, which * requires ordering. We call acl_support's acl_sort to make this - * true. - * - * POSIX.1e allows acl_valid() to reorder the ACL as it sees fit. + * true. POSIX.1e allows acl_valid() to reorder the ACL as it sees fit. * * This call is deprecated, as it doesn't ask whether the ACL is valid - * for a particular target. + * for a particular target. However, this call is standardized, unlike + * the other two forms. */ int acl_valid(acl_t acl) @@ -65,7 +64,7 @@ acl_valid(acl_t acl) int -acl_valid_file(const char *pathp, acl_type_t type, acl_t acl) +acl_valid_file_np(const char *pathp, acl_type_t type, acl_t acl) { int error; @@ -82,7 +81,7 @@ acl_valid_file(const char *pathp, acl_type_t type, acl_t acl) int -acl_valid_fd(int fd, acl_type_t type, acl_t acl) +acl_valid_fd_np(int fd, acl_type_t type, acl_t acl) { int error; |
