diff options
| author | Brian Somers <brian@FreeBSD.org> | 2000-11-21 22:11:43 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 2000-11-21 22:11:43 +0000 |
| commit | 6cab6773abfc2e48764575bd595b94fbe218c1a4 (patch) | |
| tree | 2232d708e615a2809d0f4bb51bc63e7de8a143b3 /net/arpwatch-devel/files/patch-ad | |
| parent | Update to 3.7.3, and change the maintainer from (diff) | |
Upgrade to 2.1a10
Notes
Notes:
svn path=/head/; revision=35321
Diffstat (limited to 'net/arpwatch-devel/files/patch-ad')
| -rw-r--r-- | net/arpwatch-devel/files/patch-ad | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/net/arpwatch-devel/files/patch-ad b/net/arpwatch-devel/files/patch-ad deleted file mode 100644 index 02096d9d63bf..000000000000 --- a/net/arpwatch-devel/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); - } |
