1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

net-mgmt/arpwatch: add missing files for -z flag

PR:		208361
Reported by:	ohartman@zedat.fu-berlin.de
This commit is contained in:
Kurt Jaeger 2016-03-28 16:24:26 +00:00
parent a1ca5fa19e
commit 9e1cf00bc7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=412061
2 changed files with 18 additions and 0 deletions

View File

@ -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 */

View File

@ -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;