svn commit: r291979 - head/lib/libc/gen

Garrett Cooper ngie at FreeBSD.org
Tue Dec 8 04:40:04 UTC 2015


Author: ngie
Date: Tue Dec  8 04:40:03 2015
New Revision: 291979
URL: https://svnweb.freebsd.org/changeset/base/291979

Log:
  Unbreak compiling getnetgrent.c with -DDEBUG after r236402 by adding a
  missing "}"
  
  MFC after: 3 days
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/lib/libc/gen/getnetgrent.c

Modified: head/lib/libc/gen/getnetgrent.c
==============================================================================
--- head/lib/libc/gen/getnetgrent.c	Tue Dec  8 01:29:07 2015	(r291978)
+++ head/lib/libc/gen/getnetgrent.c	Tue Dec  8 04:40:03 2015	(r291979)
@@ -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");


More information about the svn-src-all mailing list