From 7b1780d5cc2a64268192551df38d48463ac01451 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 3 Jul 2005 07:21:31 +0000 Subject: [PATCH] Include stdlib--.h rather than unistd-safer.h. (copy_to_temp): Don't call fd_safer; no longer needed now that we include stdlib--.h. --- src/tac.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tac.c b/src/tac.c index f7066745b7..961ccdf611 100644 --- a/src/tac.c +++ b/src/tac.c @@ -48,7 +48,7 @@ tac -r -s '.\| #include "quote.h" #include "quotearg.h" #include "safe-read.h" -#include "unistd-safer.h" +#include "stdlib--.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "tac" @@ -455,7 +455,8 @@ copy_to_temp (FILE **g_tmp, char **g_tempfile, int input_fd, char const *file) return false; } - if ((fd = fd_safer (fd)) < 0 || ! (tmp = fdopen (fd, "w+"))) + tmp = fdopen (fd, "w+"); + if (! tmp) { error (0, errno, _("cannot open %s for writing"), quote (tempfile)); close (fd); -- 2.47.3