summaryrefslogtreecommitdiffstats
path: root/usr.sbin/arp/arp.c
diff options
context:
space:
mode:
authormoritz <moritz@openbsd.org>2006-04-18 22:11:49 +0000
committermoritz <moritz@openbsd.org>2006-04-18 22:11:49 +0000
commit2bc13e300e08d33a9dd99748b24dd7ca59680229 (patch)
treef37e3d08ba4fa7de9136b3e915470e21771b39da /usr.sbin/arp/arp.c
parentBring back a kernel_text symbol, config -e needs it. (diff)
downloadwireguard-openbsd-2bc13e300e08d33a9dd99748b24dd7ca59680229.tar.xz
wireguard-openbsd-2bc13e300e08d33a9dd99748b24dd7ca59680229.zip
Remove "S" from getopt(3) string, which was added in 1.32 by mistake.
From Steffen Wendzel. ok henning@
Diffstat (limited to 'usr.sbin/arp/arp.c')
-rw-r--r--usr.sbin/arp/arp.c4
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;