summaryrefslogtreecommitdiff
path: root/net/arpwatch/files/patch-ag
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2004-02-23 04:42:13 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2004-02-23 04:42:13 +0000
commit60aab665670e50cb18bba45ee25f2ed091759741 (patch)
tree924c1af9c149083e0626ceb279b67ad6ca69e630 /net/arpwatch/files/patch-ag
parentBROKEN on !i386: Does not compile (diff)
Say hello to the new "net-mgmt" category. There are probably more
ports that belong here than the ones I have identified and moved in this, first, pass. Approved in principle by: marcus
Diffstat (limited to 'net/arpwatch/files/patch-ag')
-rw-r--r--net/arpwatch/files/patch-ag39
1 files changed, 0 insertions, 39 deletions
diff --git a/net/arpwatch/files/patch-ag b/net/arpwatch/files/patch-ag
deleted file mode 100644
index bbd68993bc74..000000000000
--- a/net/arpwatch/files/patch-ag
+++ /dev/null
@@ -1,39 +0,0 @@
---- arpwatch.c.orig Thu Feb 22 22:47:29 2001
-+++ arpwatch.c Thu Feb 22 22:47:29 2001
-@@ -107,6 +107,8 @@
-
- char *prog;
-
-+char *Watcher = NULL;
-+
- int can_checkpoint;
- int swapped;
- int nobogons;
-@@ -170,7 +172,7 @@
- interface = NULL;
- rfilename = NULL;
- pd = NULL;
-- while ((op = getopt(argc, argv, "df:i:n:Nr:")) != EOF)
-+ while ((op = getopt(argc, argv, "df:i:m:n:Nr:")) != EOF)
- switch (op) {
-
- case 'd':
-@@ -202,6 +204,10 @@
- rfilename = optarg;
- break;
-
-+ case 'm':
-+ Watcher = optarg;
-+ break;
-+
- default:
- usage();
- }
-@@ -751,6 +757,6 @@
-
- (void)fprintf(stderr, "Version %s\n", version);
- (void)fprintf(stderr, "usage: %s [-dN] [-f datafile] [-i interface]"
-- " [-n net[/width]] [-r file]\n", prog);
-+ " [-m email] [-n net[/width]] [-r file]\n", prog);
- exit(1);
- }