diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2010-09-09 20:37:19 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2010-09-09 20:37:19 +0000 |
commit | 781413510d7e23dddadc0f4fe32b1a9157a0a587 (patch) | |
tree | e4b041c929b4ff76c3ca646811645cda9794f66d | |
parent | d1a02e09329a89cc5e6adc785b257ad27be183d9 (diff) |
Notes
-rw-r--r-- | lib/libc/posix1e/acl_strip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/posix1e/acl_strip.c b/lib/libc/posix1e/acl_strip.c index be36afaf09fb..82eacdc4d8d9 100644 --- a/lib/libc/posix1e/acl_strip.c +++ b/lib/libc/posix1e/acl_strip.c @@ -180,7 +180,7 @@ acl_is_trivial_np(const acl_t aclp, int *trivialp) * it's non trivial by definition. */ if (aclp->ats_acl.acl_cnt > 6) { - *trivialp = 1; + *trivialp = 0; return (0); } |