Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-06-04 05:40:53 +0400
committerChristopher Faylor <me@cgf.cx>2002-06-04 05:40:53 +0400
commite02f1e9c81debf68a7948ffbd3f8177e0ec0fc59 (patch)
tree2191ccba1a3b2b3ab5731d6a33011b3d953a4d40 /winsup/cygwin/fhandler_console.cc
parente6cd2312d62bc34e430b74e34c2223f38eebe2f3 (diff)
* fhandler.cc (fhandler_base::open): Don't set binmode if already set. Don't
check for file. Files should already be set. Report on binary mode for debugging. (fhandler_base::fhandler_base): Don't set default binmode here. That's for later. * fhandler_console.cc (fhandler_console::output_tcsetattr): Don't set binmode, ever, for console. * fhandler_disk_file.cc (fhandler_disk_file::open): Always set the binary mode to the value derived from mount table. * path.cc (mount_info::conv_to_win32_path): Default to binmode if path does not translate into anything in the mount table.
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r--winsup/cygwin/fhandler_console.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index ac4f9ba68..64959e9ee 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -719,8 +719,10 @@ fhandler_console::output_tcsetattr (int, struct termios const *t)
/* Ignore the optional_actions stuff, since all output is emitted
instantly */
+#if 0
/* Enable/disable LF -> CRLF conversions */
set_w_binary ((t->c_oflag & ONLCR) ? 0 : 1);
+#endif
/* All the output bits we can ignore */