Remove code conditional on USE_TERMIO
The definition for this macro was removed in a previous commit. Reported-by: Iker Pedrosa <ipedrosa@redhat.com> Cc: Christian Göttsche <cgzones@googlemail.com> Cc: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
parent
5669b34891
commit
f2ae6a42a4
@ -67,14 +67,6 @@ static void catch_signals (unused int sig)
|
|||||||
TERMIO termio;
|
TERMIO termio;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
#ifdef USE_TERMIO
|
|
||||||
ioctl (0, TCGETA, &termio);
|
|
||||||
termio.c_iflag |= (ICRNL | IXON);
|
|
||||||
termio.c_oflag |= (OPOST | ONLCR);
|
|
||||||
termio.c_cflag |= (CREAD);
|
|
||||||
termio.c_lflag |= (ISIG | ICANON | ECHO | ECHOE | ECHOK);
|
|
||||||
ioctl (0, TCSETAF, &termio);
|
|
||||||
#endif
|
|
||||||
#ifdef USE_TERMIOS
|
#ifdef USE_TERMIOS
|
||||||
tcgetattr (0, &termio);
|
tcgetattr (0, &termio);
|
||||||
termio.c_iflag |= (ICRNL | IXON);
|
termio.c_iflag |= (ICRNL | IXON);
|
||||||
|
Loading…
Reference in New Issue
Block a user