diff options
author | brian <brian@cvs.openbsd.org> | 2000-08-16 13:53:59 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 2000-08-16 13:53:59 +0000 |
commit | 3440d54f51e2e0c1cefeb0258f187f6840d6a345 (patch) | |
tree | d38ec70a59c06690903fef2a102e4b88173f6b5c /usr.sbin | |
parent | bcea310294e7d6d3a67a5bff4be1d5bee0b3f82d (diff) |
ISDN B channels have a bandwidth of 64000, not 65536
Pointed out by: Christian Weisgerber <naddy@mips.inka.de>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/ppp/i4b.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ppp/i4b.c b/usr.sbin/ppp/ppp/i4b.c index a4a87988748..3409962eadd 100644 --- a/usr.sbin/ppp/ppp/i4b.c +++ b/usr.sbin/ppp/ppp/i4b.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: i4b.c,v 1.3 2000/08/16 09:07:01 brian Exp $ + * $OpenBSD: i4b.c,v 1.4 2000/08/16 13:53:58 brian Exp $ */ #include <sys/param.h> @@ -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; } |