MFC r289600:

Initialize `quiet` to false so `pw groupnext` again prints out the next gid
by default

Reported by: Florian Degner <f.degner@gmx.de>
PR: 203876
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
ngie 2015-10-26 00:28:05 +00:00
parent 5ab2a189ae
commit 6be0ee955f

View File

@ -259,7 +259,7 @@ pw_group_next(int argc, char **argv, char *arg1 __unused)
struct userconf *cnf;
const char *cfg = NULL;
int ch;
bool quiet;
bool quiet = false;
while ((ch = getopt(argc, argv, "Cq")) != -1) {
switch (ch) {