From ffd81f2003deaf3471e1da818735df91841399c4 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 26 Jan 2011 16:06:16 +0100 Subject: getty: do clear CLOCAL and CRTSCTS unless told otherwise Signed-off-by: Denys Vlasenko --- loginutils/getty.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/loginutils/getty.c b/loginutils/getty.c index 3cf296ed1..f158a264c 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -279,10 +279,6 @@ static void termios_init(int speed) #ifdef CIBAUD | CIBAUD /* input baud rate */ #endif -#ifdef CRTSCTS - | CRTSCTS /* flow control using RTS/CTS pins */ -#endif - | CLOCAL ); /* Set: 8 bits; hang up (drop DTR) on last close; enable receive */ G.termios.c_cflag |= CS8 | HUPCL | CREAD; -- cgit v1.2.3