diff options
| author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2001-01-07 21:41:05 +0000 |
|---|---|---|
| committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2001-01-07 21:41:05 +0000 |
| commit | 4786e00b4090a5eb2934e330503de15d5783cccc (patch) | |
| tree | a0acbb294fb8a3d340c2b69b9a6c3741ac5d6558 /lib/libc/posix1e/acl_support.c | |
| parent | e33042af13931a6c2ff5d64914ece50f1b2e146a (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_support.c')
| -rw-r--r-- | lib/libc/posix1e/acl_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/posix1e/acl_support.c b/lib/libc/posix1e/acl_support.c index a136407b287a..f2e83b7cb5a5 100644 --- a/lib/libc/posix1e/acl_support.c +++ b/lib/libc/posix1e/acl_support.c @@ -302,7 +302,7 @@ acl_name_to_id(acl_tag_t tag, char *name, uid_t *id) case ACL_GROUP: g = getgrnam(name); - if (g) { + if (!g) { errno = EINVAL; return (-1); } |
