From 125630aeab8e576bdd87c5a66ea18d8b3f583797 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 25 Jul 2018 16:40:23 -0400 Subject: Fix cfmakeraw calls It turns out that you're supposed to call cfmakeraw with a termios initialized by tcgetattr. Using an uninitialized termios resulted in hnel on NetBSD breaking the pty and causing a silent logout. --- bin/modem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/modem.c') diff --git a/bin/modem.c b/bin/modem.c index c099119a..c8074a9a 100644 --- a/bin/modem.c +++ b/bin/modem.c @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) { if (error) err(EX_IOERR, "tcgetattr"); atexit(restoreTerm); - struct termios raw; + struct termios raw = saveTerm; cfmakeraw(&raw); error = tcsetattr(STDIN_FILENO, TCSADRAIN, &raw); if (error) err(EX_IOERR, "tcsetattr"); -- cgit 1.4.1