From 043e0d933a6fa3cedba9a0c0db9d995288aa5f53 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Sat, 4 Jun 2016 16:31:33 +0000 Subject: Fix typo preventing pw {user,group}next -C from working as expected Reported by: Mike Selnet via forums.freebsd.org MFC after: 3 days --- pw/pw_group.c | 2 +- pw/pw_user.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pw') diff --git a/pw/pw_group.c b/pw/pw_group.c index 289a4c8..834160f 100644 --- a/pw/pw_group.c +++ b/pw/pw_group.c @@ -261,7 +261,7 @@ pw_group_next(int argc, char **argv, char *arg1 __unused) int ch; bool quiet = false; - while ((ch = getopt(argc, argv, "Cq")) != -1) { + while ((ch = getopt(argc, argv, "C:q")) != -1) { switch (ch) { case 'C': cfg = optarg; diff --git a/pw/pw_user.c b/pw/pw_user.c index 5ad1409..67186c3 100644 --- a/pw/pw_user.c +++ b/pw/pw_user.c @@ -742,7 +742,7 @@ pw_user_next(int argc, char **argv, char *name __unused) bool quiet = false; uid_t next; - while ((ch = getopt(argc, argv, "Cq")) != -1) { + while ((ch = getopt(argc, argv, "C:q")) != -1) { switch (ch) { case 'C': cfg = optarg; -- cgit v1.2.3-56-ge451