From: Paul Eggert Date: Sun, 3 Jul 2005 07:21:31 +0000 (+0000) Subject: Include stdlib--.h rather than unistd-safer.h. X-Git-Tag: CPPI-1_12~376 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b1780d5cc2a64268192551df38d48463ac01451;p=thirdparty%2Fcoreutils.git 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. --- 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);