summaryrefslogtreecommitdiff
path: root/libexec/getty
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-07-22 05:57:22 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-07-22 05:57:22 +0000
commitee98a93f4740048b64efdbd294dd4fb04438a338 (patch)
tree563dcdb4f4bec99c47bd4ce8642668a8ca8221cb /libexec/getty
parent02c589d9e96031f3814a58b3ff8b915b7f035aed (diff)
Notes
Diffstat (limited to 'libexec/getty')
-rw-r--r--libexec/getty/subr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c
index c91c299541bb..c5246b78a516 100644
--- a/libexec/getty/subr.c
+++ b/libexec/getty/subr.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)from: subr.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: subr.c,v 1.13 1997/11/21 07:43:52 charnier Exp $";
#endif /* not lint */
/*
@@ -704,6 +704,7 @@ static struct speedtab {
{ 7200, EXTB }, /* alternative */
{ 57600, B57600 },
{ 115200, B115200 },
+ { 230400, B230400 },
{ 0 }
};
@@ -713,7 +714,7 @@ speed(val)
{
register struct speedtab *sp;
- if (val <= B115200)
+ if (val <= B230400)
return (val);
for (sp = speedtab; sp->speed; sp++)