diff options
Diffstat (limited to 'lib/libc/posix1e/acl_valid.c')
| -rw-r--r-- | lib/libc/posix1e/acl_valid.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lib/libc/posix1e/acl_valid.c b/lib/libc/posix1e/acl_valid.c index 8c7ca674316b..fe50889d6184 100644 --- a/lib/libc/posix1e/acl_valid.c +++ b/lib/libc/posix1e/acl_valid.c @@ -30,7 +30,9 @@   */  #include <sys/types.h> +#include "namespace.h"  #include <sys/acl.h> +#include "un-namespace.h"  #include <sys/errno.h>  #include "acl_support.h" @@ -93,5 +95,5 @@ acl_valid_fd_np(int fd, acl_type_t type, acl_t acl)  		}  	} -	return (__acl_aclcheck_fd(fd, type, acl)); +	return (___acl_aclcheck_fd(fd, type, acl));  } | 
