Fix some typos in a comment BUAD -> BAUD.

This commit is contained in:
Andreas Schulz 1995-08-05 18:16:50 +00:00
parent c83d01159a
commit c4dfd14ae0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9931

View File

@ -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