diff options
| author | Xin LI <delphij@FreeBSD.org> | 2015-09-08 01:44:37 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2015-09-08 01:44:37 +0000 |
| commit | 287465ca3125953c1465a9ef933d604a7712cc22 (patch) | |
| tree | dc309965dbba6a2b8e578e1a4bcf05acc8aeee3b | |
| parent | bf8f205859c9282ab3e067197c0c686777a96fe7 (diff) | |
Notes
| -rw-r--r-- | lib/libc/posix1e/acl_flag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/posix1e/acl_flag.c b/lib/libc/posix1e/acl_flag.c index 39e258da6789..8ad10c52d9d8 100644 --- a/lib/libc/posix1e/acl_flag.c +++ b/lib/libc/posix1e/acl_flag.c @@ -71,7 +71,7 @@ acl_clear_flags_np(acl_flagset_t flagset_d) return (-1); } - *flagset_d |= 0; + *flagset_d = 0; return (0); } |
