From 9aa70e27a7238c3244e71adf4b60183c583c8c47 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 23 Jul 1995 02:30:44 +0000 Subject: [PATCH] Change hardcoded 15 (which means 38400) to B115200 which is 17 --- libexec/getty/subr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c index 0223863fbc6..6e4f5f06906 100644 --- a/libexec/getty/subr.c +++ b/libexec/getty/subr.c @@ -47,7 +47,6 @@ static char sccsid[] = "@(#)subr.c 5.10 (Berkeley) 2/26/91"; * Melbourne getty. */ #include -#define USE_OLD_TTY #include #include #include @@ -376,7 +375,7 @@ speed(val) { register struct speedtab *sp; - if (val <= 15) + if (val <= B115200) return (val); for (sp = speedtab; sp->speed; sp++)