diff options
Diffstat (limited to 'lib/libc/posix1e/acl_set.c')
-rw-r--r-- | lib/libc/posix1e/acl_set.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/posix1e/acl_set.c b/lib/libc/posix1e/acl_set.c index 58be508..172e9db 100644 --- a/lib/libc/posix1e/acl_set.c +++ b/lib/libc/posix1e/acl_set.c @@ -30,7 +30,9 @@ */ #include <sys/types.h> +#include "namespace.h" #include <sys/acl.h> +#include "un-namespace.h" #include <errno.h> #include <stdlib.h> @@ -71,7 +73,7 @@ acl_set_fd(int fd, acl_t acl) return(-1); } - return (__acl_set_fd(fd, ACL_TYPE_ACCESS, acl)); + return (___acl_set_fd(fd, ACL_TYPE_ACCESS, acl)); } int @@ -87,7 +89,7 @@ acl_set_fd_np(int fd, acl_t acl, acl_type_t type) } } - return (__acl_set_fd(fd, type, acl)); + return (___acl_set_fd(fd, type, acl)); } /* |