summaryrefslogtreecommitdiffstats
path: root/pw/pw_user.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-06-07 15:33:08 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-06-07 15:33:08 +0000
commitdb489c8994e6b368a036a5b8d9145e544fe96a14 (patch)
treed29caf51c2feb11ac83e6f6ae483b078dae16c28 /pw/pw_user.c
parentf5f4bc789a68ab52f0c57f7fddb9b63a3edfd008 (diff)
downloadpw-darwin-db489c8994e6b368a036a5b8d9145e544fe96a14.tar.gz
pw-darwin-db489c8994e6b368a036a5b8d9145e544fe96a14.tar.zst
pw-darwin-db489c8994e6b368a036a5b8d9145e544fe96a14.zip
Handle -7 via gloval pwconf
Diffstat (limited to 'pw/pw_user.c')
-rw-r--r--pw/pw_user.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index bfbde78..0fc7272 100644
--- a/pw/pw_user.c
+++ b/pw/pw_user.c
@@ -53,7 +53,7 @@ static char locked_str[] = "*LOCKED*";
static int delete_user(struct userconf *cnf, struct passwd *pwd,
struct carg *a_name, int delete, int mode);
-static int print_user(struct passwd * pwd, int v7);
+static int print_user(struct passwd * pwd);
static uid_t pw_uidpolicy(struct userconf * cnf, struct cargs * args);
static uid_t pw_gidpolicy(struct cargs * args, char *nam, gid_t prefer);
static time_t pw_pwdpolicy(struct userconf * cnf, struct cargs * args);
@@ -316,10 +316,9 @@ pw_user(int mode, struct cargs * args)
}
if (mode == M_PRINT && getarg(args, 'a')) {
- int v7 = getarg(args, '7') != NULL;
SETPWENT();
while ((pwd = GETPWENT()) != NULL)
- print_user(pwd, v7);
+ print_user(pwd);
ENDPWENT();
return EXIT_SUCCESS;
}
@@ -1161,15 +1160,15 @@ delete_user(struct userconf *cnf, struct passwd *pwd, struct carg *a_name,
}
static int
-print_user(struct passwd * pwd, int v7)
+print_user(struct passwd * pwd)
{
if (!conf.pretty) {
char *buf;
- if (!v7)
+ if (!conf.v7)
pwd->pw_passwd = (pwd->pw_passwd == NULL) ? "" : "*";
- buf = v7 ? pw_make_v7(pwd) : pw_make(pwd);
+ buf = conf.v7 ? pw_make_v7(pwd) : pw_make(pwd);
printf("%s\n", buf);
free(buf);
} else {