aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Konovalov <maxim@FreeBSD.org>2004-02-28 10:42:27 +0000
committerMaxim Konovalov <maxim@FreeBSD.org>2004-02-28 10:42:27 +0000
commit34ee70a6a0c583f0cfd7786bd7102cc34b94d082 (patch)
treecadc1e31978c211e502d288dc7b80d044b2f5353
parent1e581b97594c282014a704618f4d871c86a59e52 (diff)
downloadsrc-34ee70a6a0c583f0cfd7786bd7102cc34b94d082.tar.gz
src-34ee70a6a0c583f0cfd7786bd7102cc34b94d082.zip
o Remove obsoleted '-N' and '-d' flags.
Notes
Notes: svn path=/head/; revision=126347
-rw-r--r--sbin/savecore/savecore.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c
index 68edff15e88c..96cb2bb00770 100644
--- a/sbin/savecore/savecore.c
+++ b/sbin/savecore/savecore.c
@@ -497,7 +497,7 @@ main(int argc, char **argv)
syslog(LOG_ERR, "Cannot allocate memory");
exit(1);
}
- while ((ch = getopt(argc, argv, "CcdfkN:vz")) != -1)
+ while ((ch = getopt(argc, argv, "Ccfkvz")) != -1)
switch(ch) {
case 'C':
checkfor = 1;
@@ -517,8 +517,6 @@ main(int argc, char **argv)
case 'z':
compress = 1;
break;
- case 'd': /* Obsolete */
- case 'N':
case '?':
default:
usage();