diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-08-01 12:18:48 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-08-01 12:18:48 +0000 |
| commit | 5bb254a38fa9e233bcdb24956e1f8ccf2b19182b (patch) | |
| tree | c8cd68e3a1ebde2d6a577a92162935d0a778c39b /pw/pw.c | |
| parent | 99c28d09467b167abaa8b517679f480b4e21d40b (diff) | |
| download | pw-darwin-5bb254a38fa9e233bcdb24956e1f8ccf2b19182b.tar.gz pw-darwin-5bb254a38fa9e233bcdb24956e1f8ccf2b19182b.zip | |
Partial revert of r286152
More work needed on the cli validation
Diffstat (limited to 'pw/pw.c')
| -rw-r--r-- | pw/pw.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -262,11 +262,6 @@ main(int argc, char *argv[]) case 'c': conf.gecos = pw_checkname(optarg, 1); break; - case 'e': - conf.expire_days = strtonum(optarg, 0, INT_MAX, &errstr); - if (errstr) - errx(EX_USAGE, "Invalid expired days: %s", optarg); - break; case 'g': if (which == 0) { /* for user* */ addarg(&arglist, 'g', optarg); @@ -326,11 +321,6 @@ main(int argc, char *argv[]) case 'o': conf.checkduplicate = false; break; - case 'p': - conf.password_days = strtonum(optarg, 0, INT_MAX, &errstr); - if (errstr) - errx(EX_USAGE, "Invalid password days: %s", optarg); - break; case 'q': conf.quiet = true; break; |
