diff options
author | brian <brian@FreeBSD.org> | 2000-11-22 06:11:43 +0800 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-11-22 06:11:43 +0800 |
commit | c07e2451ead32cbacc46afd522f727f718dd26d5 (patch) | |
tree | 6058c3bcb18ca596e462fc87c57b6d05e88dbc5d /net-mgmt/arpwatch/files | |
parent | b34834c68eb95ae6b8a0e97cb5dc7eb8d9263bbc (diff) | |
download | freebsd-ports-gnome-c07e2451ead32cbacc46afd522f727f718dd26d5.tar.gz freebsd-ports-gnome-c07e2451ead32cbacc46afd522f727f718dd26d5.tar.zst freebsd-ports-gnome-c07e2451ead32cbacc46afd522f727f718dd26d5.zip |
Upgrade to 2.1a10
Diffstat (limited to 'net-mgmt/arpwatch/files')
-rw-r--r-- | net-mgmt/arpwatch/files/patch-aa | 11 | ||||
-rw-r--r-- | net-mgmt/arpwatch/files/patch-ad | 29 | ||||
-rw-r--r-- | net-mgmt/arpwatch/files/patch-ae | 9 |
3 files changed, 0 insertions, 49 deletions
diff --git a/net-mgmt/arpwatch/files/patch-aa b/net-mgmt/arpwatch/files/patch-aa deleted file mode 100644 index c3d51dd3fa46..000000000000 --- a/net-mgmt/arpwatch/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- arp2ethers.orig Tue Mar 29 11:44:52 1994 -+++ arp2ethers Fri Aug 21 10:56:26 1998 -@@ -14,7 +14,7 @@ - # - - sort +2rn arp.dat | \ -- awk -e 'NF == 4 { print }' | \ -+ awk 'NF == 4 { print }' | \ - awk -f p.awk | \ - egrep -v '\.[0-9][0-9]*$' | \ - sed -e 's/ .* / /' | \ diff --git a/net-mgmt/arpwatch/files/patch-ad b/net-mgmt/arpwatch/files/patch-ad deleted file mode 100644 index 02096d9d63bf..000000000000 --- a/net-mgmt/arpwatch/files/patch-ad +++ /dev/null @@ -1,29 +0,0 @@ ---- report.c.orig Fri Jun 9 09:54:48 2000 -+++ report.c Fri Jun 9 10:05:58 2000 -@@ -249,6 +249,9 @@ - char *unknown = "<unknown>"; - char buf[132]; - static int init = 0; -+#ifdef HAVE_MKSTEMP -+ int fd; -+#endif - - /* No report until we're initialized */ - if (initializing) -@@ -286,8 +289,16 @@ - /* Child */ - closelog(); - (void)strcpy(tempfile, "/tmp/arpwatch.XXXXXX"); -+#ifndef HAVE_MKSTEMP - (void)mktemp(tempfile); - if ((f = fopen(tempfile, "w+")) == NULL) { -+#else -+ if ((fd = mkstemp(tempfile)) == -1) { -+ syslog(LOG_ERR, "child mkstemp(%s): %m", tempfile); -+ exit(1); -+ } -+ if ((f = fdopen(fd, "w+")) == NULL) { -+#endif /* HAVE_MKSTEMP */ - syslog(LOG_ERR, "child open(%s): %m", tempfile); - exit(1); - } diff --git a/net-mgmt/arpwatch/files/patch-ae b/net-mgmt/arpwatch/files/patch-ae index c02ef28aded2..3fe876affcc2 100644 --- a/net-mgmt/arpwatch/files/patch-ae +++ b/net-mgmt/arpwatch/files/patch-ae @@ -9,15 +9,6 @@ V_INCLS="" if test "${srcdir}" != "." ; then V_INCLS="-I\$\(srcdir\)" -@@ -1207,7 +1207,7 @@ - fi - - --for ac_func in dn_skipname -+for ac_func in dn_skipname mkstemp - do - echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 - echo "configure:1214: checking for $ac_func" >&5 @@ -2599,7 +2599,7 @@ fi V_CCOPT="$V_CCOPT -Wall" |