[git commit master 1/1] getty: flush _only_ input after switching to the next baud rate

Denys Vlasenko vda.linux at googlemail.com
Mon Jan 24 22:45:22 UTC 2011


commit: http://git.busybox.net/busybox/commit/?id=136091886e287181c6c55bbeadf7325545285416
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

It was originally like this, but at some point TCIFLUSH was
inadvertently changed to TCIOFLUSH.

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 loginutils/getty.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/loginutils/getty.c b/loginutils/getty.c
index ed7e09a..becff5c 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -375,7 +375,7 @@ static char *get_logname(void)
 
 	/* Flush pending input (esp. after parsing or switching the baud rate) */
 	usleep(100*1000); /* 0.1 sec */
-	tcflush(STDIN_FILENO, TCIOFLUSH);
+	tcflush(STDIN_FILENO, TCIFLUSH);
 
 	/* Prompt for and read a login name */
 	G.line_buf[0] = '\0';
-- 
1.7.3.4



More information about the busybox-cvs mailing list