summaryrefslogtreecommitdiffstats
path: root/lib/libc/posix1e/acl_valid.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2000-01-19 06:13:59 +0000
committerrwatson <rwatson@FreeBSD.org>2000-01-19 06:13:59 +0000
commitbfcdbb750811389b1a6daf4c2fd36f4648abd3c6 (patch)
tree6d41d209d7772ccb2423ce46aacfe7a6a2e3bc64 /lib/libc/posix1e/acl_valid.c
parent81ac67ad74e0879cc0eb86f9abc74aca905c027b (diff)
downloadFreeBSD-src-bfcdbb750811389b1a6daf4c2fd36f4648abd3c6.zip
FreeBSD-src-bfcdbb750811389b1a6daf4c2fd36f4648abd3c6.tar.gz
Fix bde'isms in acl/extattr syscall interface, renaming syscalls to
prettier (?) names, adding some const's around here, et al. This is commit 4 out of 3, updating the userland library to reflect kernel interface changes. Reviewed by: bde
Diffstat (limited to 'lib/libc/posix1e/acl_valid.c')
-rw-r--r--lib/libc/posix1e/acl_valid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/posix1e/acl_valid.c b/lib/libc/posix1e/acl_valid.c
index 683525e..602d4d5 100644
--- a/lib/libc/posix1e/acl_valid.c
+++ b/lib/libc/posix1e/acl_valid.c
@@ -77,7 +77,7 @@ acl_valid_file(const char *pathp, acl_type_t type, acl_t acl)
}
}
- return (acl_syscall_aclcheck_file(pathp, type, acl));
+ return (__acl_aclcheck_file(pathp, type, acl));
}
@@ -94,5 +94,5 @@ acl_valid_fd(int fd, acl_type_t type, acl_t acl)
}
}
- return (acl_syscall_aclcheck_fd(fd, type, acl));
+ return (__acl_aclcheck_fd(fd, type, acl));
}
OpenPOWER on IntegriCloud