summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tac.c b/src/tac.c
index f55fb6ffb..fcd8e547c 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -418,7 +418,7 @@ save_stdin (FILE **g_tmp, char **g_tempfile)
sprintf (template, "%s/tacXXXXXX", tempdir);
tempfile = mktemp (template);
- fd = creat (tempfile, 0600);
+ fd = open (tempfile, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600);
if (fd == -1 || (tmp = fdopen (fd, "rw")) == NULL)
error (EXIT_FAILURE, errno, "%s", tempfile);
tmp = fdopen (fd, "rw");