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:
Baptiste Daroussin 2012-12-27 14:44:13 +00:00
parent 460a6dac0b
commit 0c50344969
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=244738

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;