diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2006-04-18 22:11:50 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2006-04-18 22:11:50 +0000 |
commit | efb91664eb9d596e0e5aefc00193aa96efda0ed7 (patch) | |
tree | 69dd6dc8893b44991a0621b7edaff1add178ff27 /usr.sbin | |
parent | 04e2ac368b9751ac5e9dfb06ccdb2f7d70acceac (diff) |
Remove "S" from getopt(3) string, which was added in 1.32 by mistake.
From Steffen Wendzel. ok henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/arp/arp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/arp/arp.c b/usr.sbin/arp/arp.c index eeb081e5a74..1750540bf07 100644 --- a/usr.sbin/arp/arp.c +++ b/usr.sbin/arp/arp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arp.c,v 1.36 2005/04/04 16:14:45 deraadt Exp $ */ +/* $OpenBSD: arp.c,v 1.37 2006/04/18 22:11:49 moritz Exp $ */ /* $NetBSD: arp.c,v 1.12 1995/04/24 13:25:18 cgd Exp $ */ /* @@ -100,7 +100,7 @@ main(int argc, char *argv[]) pid = getpid(); opterr = 0; - while ((ch = getopt(argc, argv, "andSsFf")) != -1) { + while ((ch = getopt(argc, argv, "andsFf")) != -1) { switch (ch) { case 'a': aflag = 1; |