mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix some typos in a comment BUAD -> BAUD.
This commit is contained in:
parent
c83d01159a
commit
c4dfd14ae0
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue