summaryrefslogtreecommitdiffstats
path: root/pw/pw.c
diff options
context:
space:
mode:
Diffstat (limited to 'pw/pw.c')
-rw-r--r--pw/pw.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/pw/pw.c b/pw/pw.c
index bca6715..88c83db 100644
--- a/pw/pw.c
+++ b/pw/pw.c
@@ -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;