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++)