diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 07:22:50 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 07:22:50 +0000 |
commit | 9509ae9a8ce8f54817bd502b76bd622fe276de90 (patch) | |
tree | ada03a63330be51fe8680831895a290bacebfa06 | |
parent | 4decb490328d211fc0a0a61a57b4658447a034fd (diff) | |
download | coreutils-9509ae9a8ce8f54817bd502b76bd622fe276de90.tar.xz |
Include stdio--.h, not stdio-safer.h.
(tee): Don't call fopen_safer; no longer needed now that we
include stdio--.h.
-rw-r--r-- | src/tee.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ #include "system.h" #include "error.h" -#include "stdio-safer.h" +#include "stdio--.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "tee" @@ -162,7 +162,7 @@ tee (int nfiles, const char **files) { descriptors[i] = (STREQ (files[i], "-") ? stdout - : fopen_safer (files[i], mode_string)); + : fopen (files[i], mode_string)); if (descriptors[i] == NULL) { error (0, errno, "%s", files[i]); |