mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-19 01:11:05 +01:00
Fix some typos in a comment BUAD -> BAUD.
This commit is contained in:
parent
c83d01159a
commit
c4dfd14ae0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9931
@ -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 New Issue
Block a user