From: Paul Eggert Date: Sun, 3 Jul 2005 07:20:04 +0000 (+0000) Subject: Include stdio--.h rather than stdio-safer.h. X-Git-Tag: CPPI-1_12~379 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0baad324dcc815c2f3baf05b33bfe3328addfe1;p=thirdparty%2Fcoreutils.git Include stdio--.h rather than stdio-safer.h. Include stdlib--.h. Do not include unistd-safer.h. (create_temp_file): Don't call fd_safer; no longer needed now that we include *--.h files. (xfopen): Don't call fopen_safer, for similar reasons. --- diff --git a/src/sort.c b/src/sort.c index 2093bc55c6..d99d01680a 100644 --- a/src/sort.c +++ b/src/sort.c @@ -34,9 +34,9 @@ #include "physmem.h" #include "posixver.h" #include "quote.h" -#include "stdio-safer.h" +#include "stdlib--.h" +#include "stdio--.h" #include "strnumcmp.h" -#include "unistd-safer.h" #include "xmemcoll.h" #include "xstrtol.h" @@ -439,7 +439,6 @@ create_temp_file (FILE **pfp) sigprocmask (SIG_SETMASK, &oldset, NULL); errno = saved_errno; - fd = fd_safer (fd); if (fd < 0 || (*pfp = fdopen (fd, "w")) == NULL) die (_("cannot create temporary file"), file); @@ -466,7 +465,8 @@ xfopen (const char *file, const char *how) } else { - if ((fp = fopen_safer (file, how)) == NULL) + fp = fopen (file, how); + if (! fp) die (_("open failed"), file); }