From: Paul Mackerras Date: Tue, 9 Aug 1994 06:24:59 +0000 (+0000) Subject: call lcp_close not lcp_lowerdown when no echo received X-Git-Tag: RELEASE_2_3_6~910 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=ac0f9357593ad763bda9d4fadd4ac4f9f6d908d9 call lcp_close not lcp_lowerdown when no echo received --- diff --git a/pppd/lcp.c b/pppd/lcp.c index 801dc5a..62c8064 100644 --- a/pppd/lcp.c +++ b/pppd/lcp.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: lcp.c,v 1.9 1994/06/14 06:07:47 paulus Exp $"; +static char rcsid[] = "$Id: lcp.c,v 1.10 1994/08/09 06:24:59 paulus Exp $"; #endif /* @@ -1483,7 +1483,7 @@ void LcpLinkFailure (f) { if (f->state == OPENED) { syslog (LOG_NOTICE, "Excessive lack of response to LCP echo frames."); - lcp_lowerdown(f->unit); /* Reset connection */ + lcp_close(f->unit); /* Reset connection */ } }