summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorats <ats@FreeBSD.org>1995-08-05 18:16:50 +0000
committerats <ats@FreeBSD.org>1995-08-05 18:16:50 +0000
commit9eb7a64ecc8fd83457bc71eae7cf2b8b62d9fdfd (patch)
tree04b9f080e337d9aaf83e4f5effa55cd177e8aac9 /libexec
parent8ef6697e87e448edbe28065fecdc3312b40c9b71 (diff)
downloadFreeBSD-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.c6
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
OpenPOWER on IntegriCloud