Replace non-POSIX speed setting by POSIX one

This commit is contained in:
Andrey A. Chernov 1996-05-07 16:42:26 +00:00
parent acec6438af
commit 65fe4a53c3

View File

@ -39,7 +39,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)main.c 8.1 (Berkeley) 6/20/93";*/
static char rcsid[] = "$Id: main.c,v 1.1.1.2 1996/04/13 15:33:11 joerg Exp $";
static char rcsid[] = "$Id: main.c,v 1.9 1996/05/05 19:01:10 joerg Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -284,7 +284,8 @@ main(argc, argv)
if (IM && *IM)
putf(IM);
if (setjmp(timeout)) {
tmode.c_ispeed = tmode.c_ospeed = 0;
cfsetispeed(&tmode, B0);
cfsetospeed(&tmode, B0);
(void)tcsetattr(0, TCSANOW, &tmode);
exit(1);
}