diff options
author | 1996-07-27 10:34:31 +0000 | |
---|---|---|
committer | 1996-07-27 10:34:31 +0000 | |
commit | 8ffcf9bdc4b681232452933a57ef82f5d344e22e (patch) | |
tree | 087eb358f60f605647253b2257bd213fabce9313 | |
parent | versatile baud rates; from netbsd (diff) | |
download | wireguard-openbsd-8ffcf9bdc4b681232452933a57ef82f5d344e22e.tar.xz wireguard-openbsd-8ffcf9bdc4b681232452933a57ef82f5d344e22e.zip |
VMIN=1/VTIME=0; netbsd pr#2546
-rw-r--r-- | usr.bin/rlogin/rlogin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/rlogin/rlogin.c b/usr.bin/rlogin/rlogin.c index 7b5a1c80476..78e7049f3a9 100644 --- a/usr.bin/rlogin/rlogin.c +++ b/usr.bin/rlogin/rlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rlogin.c,v 1.6 1996/06/26 05:38:33 deraadt Exp $ */ +/* $OpenBSD: rlogin.c,v 1.7 1996/07/27 10:34:31 deraadt Exp $ */ /* $NetBSD: rlogin.c,v 1.8 1995/10/05 09:07:22 mycroft Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)rlogin.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: rlogin.c,v 1.6 1996/06/26 05:38:33 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: rlogin.c,v 1.7 1996/07/27 10:34:31 deraadt Exp $"; #endif #endif /* not lint */ @@ -779,6 +779,8 @@ mode(f) tty.c_lflag &= ~(ECHO|ICANON|ISIG|IEXTEN); tty.c_iflag &= ~ICRNL; tty.c_oflag &= ~OPOST; + tty.c_cc[VMIN] = 1; + tty.c_cc[VTIME] = 0; if (eight) { tty.c_iflag &= IXOFF; tty.c_cflag &= ~(CSIZE|PARENB); |