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_valid.c | |
| parent | 2fff585062e948ff849437905d9b51be9658b2b6 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_valid.c')
| -rw-r--r-- | lib/libc/posix1e/acl_valid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/posix1e/acl_valid.c b/lib/libc/posix1e/acl_valid.c index 602d4d5067e8..69d0f1d84c8b 100644 --- a/lib/libc/posix1e/acl_valid.c +++ b/lib/libc/posix1e/acl_valid.c @@ -69,7 +69,7 @@ acl_valid_file(const char *pathp, acl_type_t type, acl_t acl) { int error; - if (acl_posix1e(acl)) { + if (acl_posix1e(acl, type)) { error = acl_sort(acl); if (error) { errno = error; @@ -86,7 +86,7 @@ acl_valid_fd(int fd, acl_type_t type, acl_t acl) { int error; - if (acl_posix1e(acl)) { + if (acl_posix1e(acl, type)) { error = acl_sort(acl); if (error) { errno = error; |
