summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2014-02-26 20:50:17 +0000
committerclaudio <claudio@openbsd.org>2014-02-26 20:50:17 +0000
commitbf44d53037fa381c1842bd220438e28ca18bf0b6 (patch)
tree4bba0aad7c00fa6b481a640e2f2ef8816bedf83f
parentuse a larger read buffer to speed things up, particularly during upgrades. (diff)
downloadwireguard-openbsd-bf44d53037fa381c1842bd220438e28ca18bf0b6.tar.xz
wireguard-openbsd-bf44d53037fa381c1842bd220438e28ca18bf0b6.zip
There is no need to init a global to 0
-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 1b1a594ec3a..a4e37b6634d 100644
--- a/usr.sbin/arp/arp.c
+++ b/usr.sbin/arp/arp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arp.c,v 1.54 2013/08/15 13:43:33 bluhm Exp $ */
+/* $OpenBSD: arp.c,v 1.55 2014/02/26 20:50:17 claudio Exp $ */
/* $NetBSD: arp.c,v 1.12 1995/04/24 13:25:18 cgd Exp $ */
/*
@@ -83,7 +83,7 @@ static int replace; /* replace entries when adding */
static int nflag; /* no reverse dns lookups */
static int aflag; /* do it for all entries */
static int s = -1;
-static int rdomain = 0;
+static int rdomain;
extern int h_errno;