aboutsummaryrefslogtreecommitdiff
path: root/lang/tcl84/files/patch-tmpnam
diff options
context:
space:
mode:
Diffstat (limited to 'lang/tcl84/files/patch-tmpnam')
-rw-r--r--lang/tcl84/files/patch-tmpnam15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/tcl84/files/patch-tmpnam b/lang/tcl84/files/patch-tmpnam
deleted file mode 100644
index 535259b7af2c..000000000000
--- a/lang/tcl84/files/patch-tmpnam
+++ /dev/null
@@ -1,15 +0,0 @@
---- tclUnixPipe.c.orig Wed Apr 4 00:54:39 2001
-+++ tclUnixPipe.c Thu May 10 22:00:30 2001
-@@ -195,10 +195,8 @@
- * We should also check against making more then TMP_MAX of these.
- */
-
-- if (tmpnam(fileName) == NULL) { /* INTL: Native. */
-- return NULL;
-- }
-- fd = open(fileName, O_RDWR|O_CREAT|O_EXCL, 0666); /* INTL: Native. */
-+ strlcpy(fileName, "/var/tmp/tcltmp.XXXXXX", L_tmpnam);
-+ fd = mkstemp(fileName); /* INTL: Native. */
- if (fd == -1) {
- return NULL;
- }