diff options
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r-- | sys/kern/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index cdabafc..e0045ce 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -802,7 +802,7 @@ ttydevsw_defparam(struct tty *tp, struct termios *t) { /* Use a fake baud rate, we're not a real device. */ - t->c_ispeed = t->c_ospeed = TTYDEF_SPEED_PSEUDO; + t->c_ispeed = t->c_ospeed = TTYDEF_SPEED; return (0); } |