summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-06-04 16:31:33 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-06-04 16:31:33 +0000
commit2a6f15e0cafa2da2bd94b00b1a7285cb9715b5aa (patch)
tree8ea67aff44b8334043b4c2b4df3952108400c58d
parent72c791863f4747db7f1a675767920499d9f4fdcd (diff)
downloadpw-darwin-2a6f15e0cafa2da2bd94b00b1a7285cb9715b5aa.tar.gz
pw-darwin-2a6f15e0cafa2da2bd94b00b1a7285cb9715b5aa.tar.zst
pw-darwin-2a6f15e0cafa2da2bd94b00b1a7285cb9715b5aa.zip
Fix typo preventing pw {user,group}next -C from working as expected
Reported by: Mike Selnet via forums.freebsd.org MFC after: 3 days
-rw-r--r--pw/pw_group.c2
-rw-r--r--pw/pw_user.c2
2 files changed, 2 insertions, 2 deletions
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;