diff options
Diffstat (limited to 'security/tripwire-131/files/patch-src-utils.c')
-rw-r--r-- | security/tripwire-131/files/patch-src-utils.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/security/tripwire-131/files/patch-src-utils.c b/security/tripwire-131/files/patch-src-utils.c deleted file mode 100644 index 3b025e3b07ce..000000000000 --- a/security/tripwire-131/files/patch-src-utils.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/utils.c.orig Tue Jun 13 23:43:01 2000 -+++ src/utils.c Tue Jun 13 23:43:50 2000 -@@ -856,8 +856,8 @@ - int fd; - - (void) strcpy(tmp, TEMPFILE_TEMPLATE); -- if ((char *) mktemp(tmp) == NULL) { -- perror("tempfilename_generate: mktemp()"); -+ if (mkstemp(tmp) == -1) { -+ perror("tempfilename_generate: mkstemp()"); - exit(1); - } - |