diff options
| author | Andreas Schulz <ats@FreeBSD.org> | 1995-08-05 18:16:50 +0000 |
|---|---|---|
| committer | Andreas Schulz <ats@FreeBSD.org> | 1995-08-05 18:16:50 +0000 |
| commit | c4dfd14ae0ecba0a5457d66b2f74d729a512ae55 (patch) | |
| tree | 04b9f080e337d9aaf83e4f5effa55cd177e8aac9 /libexec/telnetd | |
| parent | c83d01159a401e3ba85d0bf049b743ff0f502e40 (diff) | |
Notes
Diffstat (limited to 'libexec/telnetd')
| -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 c6b3221ae0c6..468655061fae 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 |
