diff options
author | brian <brian@cvs.openbsd.org> | 2000-11-11 01:29:58 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 2000-11-11 01:29:58 +0000 |
commit | be5fe45d05d8d50bf8653533e389790de3b3dd5b (patch) | |
tree | d667ce65f0683f3c812f1bcf7d8a70c967b4787e /usr.sbin | |
parent | d4d04e72d2188fdde92c2266ac648e5b1fb2111d (diff) |
Increase M_MAXBUF so that it's greater than HDLCSIZE
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/ppp/mbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ppp/mbuf.h b/usr.sbin/ppp/ppp/mbuf.h index 2c4d14e36c5..8f0dfc71bb3 100644 --- a/usr.sbin/ppp/ppp/mbuf.h +++ b/usr.sbin/ppp/ppp/mbuf.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $OpenBSD: mbuf.h,v 1.8 2000/02/27 01:38:27 brian Exp $ + * $OpenBSD: mbuf.h,v 1.9 2000/11/11 01:29:57 brian Exp $ * * TODO: */ @@ -83,7 +83,7 @@ struct mqueue { #define MB_UNKNOWN 38 #define MB_MAX MB_UNKNOWN -#define M_MAXLEN (4096 - sizeof(struct mbuf)) +#define M_MAXLEN (4352 - sizeof(struct mbuf)) /* > HDLCSIZE */ struct cmdargs; |