diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-13 03:37:29 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-13 03:37:29 +0000 |
commit | 4cb27004062757d9167158a0923ed0c1521467b1 (patch) | |
tree | 9ff31c0b07cec3cf0f7b6460f013df77f89324f9 | |
parent | e8eb34fc0589c0b8d326f6f04957c31a5aa00e4b (diff) | |
download | FreeBSD-src-4cb27004062757d9167158a0923ed0c1521467b1.zip FreeBSD-src-4cb27004062757d9167158a0923ed0c1521467b1.tar.gz |
MFC r291979:
Unbreak compiling getnetgrent.c with -DDEBUG after r236402 by adding a
missing "}"
Sponsored by: EMC / Isilon Storage Division
-rw-r--r-- | lib/libc/gen/getnetgrent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/gen/getnetgrent.c b/lib/libc/gen/getnetgrent.c index 4c56461..4bf0a14 100644 --- a/lib/libc/gen/getnetgrent.c +++ b/lib/libc/gen/getnetgrent.c @@ -512,6 +512,7 @@ parse_netgrp(const char *group) ng[NG_DOM] == NULL ? "" : ",", ng[NG_DOM] == NULL ? "" : ng[NG_DOM], lp->l_groupname); + } #endif } else { spos = strsep(&pos, ", \t"); |