summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-01-11 21:56:32 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-01-11 21:56:32 +0000
commit495b737432f0db070073e8cb403a26abfc15d94c (patch)
tree0ab35223f31297aca1c1bdd031342d3cd14c036c
parent5a49d8a97a14534208915e45c192b22c29deed3e (diff)
remove the temporary -O flag..
-rw-r--r--sbin/sysctl/sysctl.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c
index 7feb5895b0d..6d4cf683078 100644
--- a/sbin/sysctl/sysctl.c
+++ b/sbin/sysctl/sysctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.c,v 1.103 2004/01/11 21:54:27 deraadt Exp $ */
+/* $OpenBSD: sysctl.c,v 1.104 2004/01/11 21:56:31 deraadt Exp $ */
/* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */
/*
@@ -40,7 +40,7 @@ static const char copyright[] =
#if 0
static const char sccsid[] = "@(#)sysctl.c 8.5 (Berkeley) 5/9/95";
#else
-static char *rcsid = "$OpenBSD: sysctl.c,v 1.103 2004/01/11 21:54:27 deraadt Exp $";
+static char *rcsid = "$OpenBSD: sysctl.c,v 1.104 2004/01/11 21:56:31 deraadt Exp $";
#endif
#endif /* not lint */
@@ -220,13 +220,9 @@ main(int argc, char *argv[])
{
int ch, lvl1;
- while ((ch = getopt(argc, argv, "AanqwO")) != -1) {
+ while ((ch = getopt(argc, argv, "Aanqw")) != -1) {
switch (ch) {
- case 'O':
- equ = " = ";
- break;
-
case 'A':
Aflag = 1;
break;