diff options
Diffstat (limited to 'lib/libposix1e/acl_valid.c')
-rw-r--r-- | lib/libposix1e/acl_valid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libposix1e/acl_valid.c b/lib/libposix1e/acl_valid.c index 683525e..602d4d5 100644 --- a/lib/libposix1e/acl_valid.c +++ b/lib/libposix1e/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)); } |