summaryrefslogtreecommitdiff
path: root/src/tee.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tee.c')
-rw-r--r--src/tee.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tee.c b/src/tee.c
index 2d86fcb80..43fec1e61 100644
--- a/src/tee.c
+++ b/src/tee.c
@@ -175,6 +175,8 @@ tee (int nfiles, const char **files)
for (i = nfiles; i >= 1; i--)
files[i] = files[i - 1];
+ SET_BINARY2 (0, 1);
+
/* In the array of NFILES + 1 descriptors, make
the first one correspond to standard output. */
descriptors[0] = stdout;
@@ -192,6 +194,7 @@ tee (int nfiles, const char **files)
else
{
SETVBUF (descriptors[i], NULL, _IONBF, 0);
+ SET_BINARY (fileno (descriptors[i]));
}
}