getty: flush _only_ input after switching to the next baud rate
It was originally like this, but at some point TCIFLUSH was inadvertently changed to TCIOFLUSH. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -375,7 +375,7 @@ static char *get_logname(void)
|
|||||||
|
|
||||||
/* Flush pending input (esp. after parsing or switching the baud rate) */
|
/* Flush pending input (esp. after parsing or switching the baud rate) */
|
||||||
usleep(100*1000); /* 0.1 sec */
|
usleep(100*1000); /* 0.1 sec */
|
||||||
tcflush(STDIN_FILENO, TCIOFLUSH);
|
tcflush(STDIN_FILENO, TCIFLUSH);
|
||||||
|
|
||||||
/* Prompt for and read a login name */
|
/* Prompt for and read a login name */
|
||||||
G.line_buf[0] = '\0';
|
G.line_buf[0] = '\0';
|
||||||
|
Reference in New Issue
Block a user