aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-03-28 16:24:26 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-03-28 16:24:26 +0000
commit9e1cf00bc7a1cbcc13dc9ce146e08dbe95b92bd9 (patch)
treef2ab6e9437f5247fcb4970d99d4305cc99e5fa56 /net-mgmt
parenta1ca5fa19e42040c0af51b7c61eae2216f7c8c57 (diff)
downloadports-9e1cf00bc7a1cbcc13dc9ce146e08dbe95b92bd9.tar.gz
ports-9e1cf00bc7a1cbcc13dc9ce146e08dbe95b92bd9.zip
net-mgmt/arpwatch: add missing files for -z flag
PR: 208361 Reported by: ohartman@zedat.fu-berlin.de
Notes
Notes: svn path=/head/; revision=412061
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/arpwatch/files/patch-util.c10
-rw-r--r--net-mgmt/arpwatch/files/patch-util.h8
2 files changed, 18 insertions, 0 deletions
diff --git a/net-mgmt/arpwatch/files/patch-util.c b/net-mgmt/arpwatch/files/patch-util.c
new file mode 100644
index 000000000000..24a46e363179
--- /dev/null
+++ b/net-mgmt/arpwatch/files/patch-util.c
@@ -0,0 +1,10 @@
+--- util.c.orig 2004-01-22 22:25:39 UTC
++++ util.c
+@@ -60,6 +60,7 @@ u_char zero[6] = { 0, 0, 0, 0, 0, 0 };
+ u_char allones[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
+
+ int debug = 0;
++int zeroflag = 0;
+ int initializing = 1; /* true if initializing */
+
+ /* syslog() helper routine */
diff --git a/net-mgmt/arpwatch/files/patch-util.h b/net-mgmt/arpwatch/files/patch-util.h
new file mode 100644
index 000000000000..a2acc88abf37
--- /dev/null
+++ b/net-mgmt/arpwatch/files/patch-util.h
@@ -0,0 +1,8 @@
+--- util.h.orig 1996-10-06 10:22:14 UTC
++++ util.h
+@@ -16,4 +16,5 @@ extern u_char zero[6];
+ extern u_char allones[6];
+
+ extern int debug;
++extern int zeroflag;
+ extern int initializing;