Browse Source

* fhandler_tty.cc (fhandler_tty_master::init): Don't erase all default

termios settings of slave console.
gdb_7_1-branch
Corinna Vinschen 16 years ago
parent
commit
c013520152
  1. 5
      winsup/cygwin/ChangeLog
  2. 6
      winsup/cygwin/fhandler_tty.cc

5
winsup/cygwin/ChangeLog

@ -1,3 +1,8 @@
2010-01-13 Corinna Vinschen <corinna@vinschen.de>
* fhandler_tty.cc (fhandler_tty_master::init): Don't erase all default
termios settings of slave console.
2010-01-13 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (rename): Don't exit prematurely with EROFS when trying

6
winsup/cygwin/fhandler_tty.cc

@ -1,7 +1,7 @@
/* fhandler_tty.cc
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009 Red Hat, Inc.
2006, 2007, 2008, 2009, 2010 Red Hat, Inc.
This file is part of Cygwin.
@ -65,10 +65,6 @@ fhandler_tty_master::init ()
return -1;
}
termios ti;
memset (&ti, 0, sizeof (ti));
console->tcsetattr (0, &ti);
if (!setup (false))
return 1;

Loading…
Cancel
Save