From 486764a530fa32c4fd44250dd54b0b60ce46e6d6 Mon Sep 17 00:00:00 2001 From: Dirk Meyer Date: Sat, 24 Nov 2001 04:18:46 +0000 Subject: update ports after rep after reprocopy: ports/lang/tcl83 to ports/lang/tcl84 ports/x11-toolkits/tk83 to ports/x11-toolkits/tk84 CATEGORIES stripped, no "tcl84" and "tk84" entrys. --- lang/tcl84/files/patch-tclUnixPipe.c | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 lang/tcl84/files/patch-tclUnixPipe.c (limited to 'lang/tcl84/files/patch-tclUnixPipe.c') diff --git a/lang/tcl84/files/patch-tclUnixPipe.c b/lang/tcl84/files/patch-tclUnixPipe.c deleted file mode 100644 index 535259b7af2c..000000000000 --- a/lang/tcl84/files/patch-tclUnixPipe.c +++ /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; - } -- cgit v1.2.3