From cf04cc6ec2f4b54dc2f3df1bf6789122a71acd90 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 1 Aug 2000 07:10:57 +0000 Subject: [PATCH] (tee): Use SET_BINARY and SET_BINARY2. From Prashant TR. --- src/tee.c | 3 +++ 1 file changed, 3 insertions(+) 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])); } } -- 2.34.1