diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2000-01-26 04:19:38 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2000-01-26 04:19:38 +0000 |
| commit | 8f45e8c07611579a6a623ef2201082816c2f39ae (patch) | |
| tree | 3c9c6a2c285edd25bc3bf350bab4af093e85f3aa /lib/libc/posix1e/acl_delete.c | |
| parent | 2fff585062e948ff849437905d9b51be9658b2b6 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_delete.c')
| -rw-r--r-- | lib/libc/posix1e/acl_delete.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/libc/posix1e/acl_delete.c b/lib/libc/posix1e/acl_delete.c index c3aa268ec51b..8998400a0585 100644 --- a/lib/libc/posix1e/acl_delete.c +++ b/lib/libc/posix1e/acl_delete.c @@ -34,14 +34,6 @@ #include <sys/errno.h> int -acl_delete_def_fd(int filedes) -{ - - return (__acl_delete_fd(filedes, ACL_TYPE_DEFAULT)); -} - - -int acl_delete_def_file(const char *path_p) { @@ -50,7 +42,7 @@ acl_delete_def_file(const char *path_p) int -acl_delete_file(const char *path_p, acl_type_t type) +acl_delete_file_np(const char *path_p, acl_type_t type) { return (__acl_delete_file(path_p, type)); @@ -58,7 +50,7 @@ acl_delete_file(const char *path_p, acl_type_t type) int -acl_delete_fd(int filedes, acl_type_t type) +acl_delete_fd_np(int filedes, acl_type_t type) { return (__acl_delete_fd(filedes, type)); |
