mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 08:22:44 +00:00
Move test for -w flag outside of the code dealing with -D (defaults).
This should cause -w's argument not to be ignored in the usermod case, so it will affect modification of the user's password instead of using the pw.conf (or internal default=no '*') password method. PR: bin/11168
This commit is contained in:
parent
f707b0d536
commit
d37861da7a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63600
@ -255,6 +255,8 @@ pw_user(struct userconf * cnf, int mode, struct cargs * args)
|
||||
if ((arg = getarg(args, 's')) != NULL)
|
||||
cnf->shell_default = arg->val;
|
||||
|
||||
if ((arg = getarg(args, 'w')) != NULL)
|
||||
cnf->default_password = boolean_val(arg->val, cnf->default_password);
|
||||
if (mode == M_ADD && getarg(args, 'D')) {
|
||||
if (getarg(args, 'n') != NULL)
|
||||
errx(EX_DATAERR, "can't combine `-D' with `-n name'");
|
||||
@ -270,8 +272,6 @@ pw_user(struct userconf * cnf, int mode, struct cargs * args)
|
||||
if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_gid = (gid_t) atoi(p)) < cnf->min_gid)
|
||||
cnf->max_gid = 32000;
|
||||
}
|
||||
if ((arg = getarg(args, 'w')) != NULL)
|
||||
cnf->default_password = boolean_val(arg->val, cnf->default_password);
|
||||
|
||||
arg = getarg(args, 'C');
|
||||
if (write_userconfig(arg ? arg->val : NULL))
|
||||
|
Loading…
Reference in New Issue
Block a user