diff options
author | brian <brian@FreeBSD.org> | 2002-03-12 16:05:26 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2002-03-12 16:05:26 +0000 |
commit | e3b5feb1f55fcf8110c5946672af88c0429a2d19 (patch) | |
tree | ece573f9c8834f963a5d87d08f2f4e2d4711ca79 | |
parent | 89ee13ec01719e5bb8510c9967adfe10342263b4 (diff) | |
download | FreeBSD-src-e3b5feb1f55fcf8110c5946672af88c0429a2d19.zip FreeBSD-src-e3b5feb1f55fcf8110c5946672af88c0429a2d19.tar.gz |
Handle B460800 and B921600 being defined in <termios.h>
-rw-r--r-- | usr.sbin/ppp/defs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/ppp/defs.c b/usr.sbin/ppp/defs.c index 78ef1dc..9766802 100644 --- a/usr.sbin/ppp/defs.c +++ b/usr.sbin/ppp/defs.c @@ -230,6 +230,12 @@ static const struct speeds { #ifdef B230400 { 230400, B230400, }, #endif +#ifdef B460800 + { 460800, B460800, }, +#endif +#ifdef B921600 + { 921600, B921600, }, +#endif #ifdef EXTA { 19200, EXTA, }, #endif |