From 8901caa58f133b40f92f819861fbaf4c797a518f Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 18 Oct 2004 19:07:55 +0000 Subject: Call gettempname() with its new args. --- Src/exec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Src/exec.c') diff --git a/Src/exec.c b/Src/exec.c index 437233bad..ba4e3d28e 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2801,7 +2801,7 @@ getherestr(struct redir *fn) untokenize(t); unmetafy(t, &len); t[len++] = '\n'; - s = gettempname(); + s = gettempname(NULL, 1); if (!s || (fd = open(s, O_CREAT|O_WRONLY|O_EXCL|O_NOCTTY, 0600)) == -1) return -1; write(fd, t, len); @@ -2975,7 +2975,7 @@ getoutputfile(char *cmd) return NULL; if (!(prog = parsecmd(cmd))) return NULL; - if (!(nam = gettempname())) + if (!(nam = gettempname(NULL, 1))) return NULL; nam = ztrdup(nam); @@ -3022,7 +3022,7 @@ getoutputfile(char *cmd) static char * namedpipe(void) { - char *tnam = gettempname(); + char *tnam = gettempname(NULL, 1); # ifdef HAVE_MKFIFO if (mkfifo(tnam, 0600) < 0) -- cgit 1.4.1