From 4bb6aac05ef4db56a760f582e005280fd2cdc42f Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Tue, 3 Jul 2001 22:20:11 +0000 Subject: [PATCH] Don't accept chap80lm by default - it doesn't work. MFC after: 1 week --- usr.sbin/ppp/lcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c index 25c893bea40..4734fcc2009 100644 --- a/usr.sbin/ppp/lcp.c +++ b/usr.sbin/ppp/lcp.c @@ -261,7 +261,7 @@ lcp_Init(struct lcp *lcp, struct bundle *bundle, struct link *l, lcp->cfg.chap05 = NEG_ACCEPTED; #ifdef HAVE_DES lcp->cfg.chap80nt = NEG_ACCEPTED; - lcp->cfg.chap80lm = NEG_ACCEPTED; + lcp->cfg.chap80lm = 0; lcp->cfg.chap81 = NEG_ACCEPTED; #endif lcp->cfg.lqr = NEG_ACCEPTED;