diff options
author | ats <ats@FreeBSD.org> | 1995-08-05 18:16:50 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-08-05 18:16:50 +0000 |
commit | 9eb7a64ecc8fd83457bc71eae7cf2b8b62d9fdfd (patch) | |
tree | 04b9f080e337d9aaf83e4f5effa55cd177e8aac9 /libexec | |
parent | 8ef6697e87e448edbe28065fecdc3312b40c9b71 (diff) | |
download | FreeBSD-src-9eb7a64ecc8fd83457bc71eae7cf2b8b62d9fdfd.zip FreeBSD-src-9eb7a64ecc8fd83457bc71eae7cf2b8b62d9fdfd.tar.gz |
Fix some typos in a comment BUAD -> BAUD.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/sys_term.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/telnetd/sys_term.c b/libexec/telnetd/sys_term.c index c6b3221..4686550 100644 --- a/libexec/telnetd/sys_term.c +++ b/libexec/telnetd/sys_term.c @@ -971,7 +971,7 @@ struct termspeeds { { 4800, B4800 }, { 9600, B9600 }, { 19200, B9600 }, { 38400, B9600 }, { -1, B9600 } }; -#endif /* DECODE_BUAD */ +#endif /* DECODE_BAUD */ void tty_tspeed(val) @@ -983,9 +983,9 @@ tty_tspeed(val) for (tp = termspeeds; (tp->speed != -1) && (val > tp->speed); tp++) ; cfsetospeed(&termbuf, tp->value); -#else /* DECODE_BUAD */ +#else /* DECODE_BAUD */ cfsetospeed(&termbuf, val); -#endif /* DECODE_BUAD */ +#endif /* DECODE_BAUD */ } void |