From 242373a7eea531699ca8f29f8a8e6a92b1894475 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Wed, 16 Aug 2000 13:54:04 +0000 Subject: [PATCH] ISDN B channels have a bandwidth of 64000, not 65536 Pointed out by: Christian Weisgerber --- usr.sbin/ppp/i4b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/ppp/i4b.c b/usr.sbin/ppp/i4b.c index cd77d4121a20..fe82faeb817b 100644 --- a/usr.sbin/ppp/i4b.c +++ b/usr.sbin/ppp/i4b.c @@ -250,7 +250,7 @@ i4b_Speed(struct physical *p) if (tcgetattr(p->fd, &ios) == -1 || (ret = SpeedToInt(cfgetispeed(&ios))) == 0) - ret = 65536; + ret = 64000; return ret; }