diff options
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r-- | winsup/cygwin/dtable.cc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index 31cdf4ab7..4c39035f9 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -165,7 +165,13 @@ void dtable::init_std_file_from_handle (int fd, HANDLE handle, DWORD myaccess, const char *name) { - int bin = binmode ? O_BINARY : 0; + int bin; + + if (__fmode) + bin = __fmode; + else + bin = binmode ?: 0; + /* Check to see if we're being redirected - if not then we open then as consoles */ if (fd == 0 || fd == 1 || fd == 2) @@ -190,6 +196,11 @@ dtable::init_std_file_from_handle (int fd, HANDLE handle, else name = "/dev/conin"; } + else if (GetFileType (handle) == FILE_TYPE_PIPE) + { + if (bin == 0) + bin = O_BINARY; + } } build_fhandler (fd, name, handle)->init (handle, myaccess, bin); |