diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-08 04:40:03 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-08 04:40:03 +0000 |
commit | 18386bfabb62cd9ad1c727b1d460bc9e84db6aea (patch) | |
tree | 9c2d91f6fc6ecefafb365abb9968a0b72af6d59d /lib/libc | |
parent | f25d8749d49c2dac52891bc0b98559f77826a558 (diff) | |
download | FreeBSD-src-18386bfabb62cd9ad1c727b1d460bc9e84db6aea.zip FreeBSD-src-18386bfabb62cd9ad1c727b1d460bc9e84db6aea.tar.gz |
Unbreak compiling getnetgrent.c with -DDEBUG after r236402 by adding a
missing "}"
MFC after: 3 days
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libc')
-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"); |