Fix a regression in "pw group show" introduced r242349:

print a newline after printing each group line.

PR:		bin/174731
Submitted by:	Jan Beich <jbeich@tormail.org>
This commit is contained in:
bapt 2012-12-27 14:44:13 +00:00
parent e5fca3f7cb
commit a7f43aa146

View File

@ -407,7 +407,7 @@ print_group(struct group * grp, int pretty)
char *buf = NULL;
buf = gr_make(grp);
fputs(buf, stdout);
printf("%s\n", buf);
free(buf);
} else {
int i;