From d0baad324dcc815c2f3baf05b33bfe3328addfe1 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 3 Jul 2005 07:20:04 +0000 Subject: [PATCH] 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. --- src/sort.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sort.c b/src/sort.c index 2093bc5..d99d016 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); } -- 2.7.4