diff options
| author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2001-04-24 22:45:41 +0000 | 
|---|---|---|
| committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2001-04-24 22:45:41 +0000 | 
| commit | 0f6263079e626b2fababe9cc131b589d1ecb3337 (patch) | |
| tree | efb3dda9df6725fd1e4073173d30bd26c7a03b89 /lib/libc/posix1e/acl_valid.c | |
| parent | 15fca934f63619777be51e7b38a7f55dc69294d1 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_valid.c')
| -rw-r--r-- | lib/libc/posix1e/acl_valid.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/lib/libc/posix1e/acl_valid.c b/lib/libc/posix1e/acl_valid.c index fe50889d6184..6eaa6ac058ab 100644 --- a/lib/libc/posix1e/acl_valid.c +++ b/lib/libc/posix1e/acl_valid.c @@ -78,7 +78,7 @@ acl_valid_file_np(const char *pathp, acl_type_t type, acl_t acl)  		}  	} -	return (__acl_aclcheck_file(pathp, type, acl)); +	return (__acl_aclcheck_file(pathp, type, &acl->ats_acl));  } @@ -95,5 +95,8 @@ acl_valid_fd_np(int fd, acl_type_t type, acl_t acl)  		}  	} -	return (___acl_aclcheck_fd(fd, type, acl)); +	acl->ats_cur_entry = 0; + + +	return (___acl_aclcheck_fd(fd, type, &acl->ats_acl));  } | 
