summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorbrian <brian@cvs.openbsd.org>2000-11-11 01:29:58 +0000
committerbrian <brian@cvs.openbsd.org>2000-11-11 01:29:58 +0000
commitbe5fe45d05d8d50bf8653533e389790de3b3dd5b (patch)
treed667ce65f0683f3c812f1bcf7d8a70c967b4787e /usr.sbin
parentd4d04e72d2188fdde92c2266ac648e5b1fb2111d (diff)
Increase M_MAXBUF so that it's greater than HDLCSIZE
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ppp/ppp/mbuf.h4
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;