diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2002-12-29 20:47:05 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2002-12-29 20:47:05 +0000 |
| commit | 6394f703dcdf80f1fd010d508645732880f46d93 (patch) | |
| tree | 985bdae2196acf3128685ad7f46fecd574f00a3f /lib/libc/posix1e/acl_delete.c | |
| parent | a95f262c6b67d086d3bffa6c87d4b0c909519d27 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_delete.c')
| -rw-r--r-- | lib/libc/posix1e/acl_delete.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/libc/posix1e/acl_delete.c b/lib/libc/posix1e/acl_delete.c index fc929c43a489..a93cd7b2ec9d 100644 --- a/lib/libc/posix1e/acl_delete.c +++ b/lib/libc/posix1e/acl_delete.c @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -43,6 +45,12 @@ acl_delete_def_file(const char *path_p) return (__acl_delete_file(path_p, ACL_TYPE_DEFAULT)); } +int +acl_delete_def_link_np(const char *path_p) +{ + + return (__acl_delete_link(path_p, ACL_TYPE_DEFAULT)); +} int acl_delete_file_np(const char *path_p, acl_type_t type) @@ -51,6 +59,13 @@ acl_delete_file_np(const char *path_p, acl_type_t type) return (__acl_delete_file(path_p, type)); } +int +acl_delete_link_np(const char *path_p, acl_type_t type) +{ + + return (__acl_delete_link(path_p, type)); +} + int acl_delete_fd_np(int filedes, acl_type_t type) |
