From: Paul Mackerras Date: Thu, 1 Jun 1995 01:30:38 +0000 (+0000) Subject: fix minor bug in addr nak processing X-Git-Tag: RELEASE_2_3_6~685 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=fa27d664513ba1af7257fc642ff6c7a90dd65001;p=ppp.git fix minor bug in addr nak processing --- diff --git a/pppd/ipcp.c b/pppd/ipcp.c index 4e1f52f..112def9 100644 --- a/pppd/ipcp.c +++ b/pppd/ipcp.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: ipcp.c,v 1.18 1995/05/19 03:18:08 paulus Exp $"; +static char rcsid[] = "$Id: ipcp.c,v 1.19 1995/06/01 01:30:38 paulus Exp $"; #endif /* @@ -581,7 +581,8 @@ ipcp_nakci(f, p, len) if (ciaddr1 && go->accept_local) try.ouraddr = ciaddr1; if (try.ouraddr != 0) - no.neg_addr = 1; + try.neg_addr = 1; + no.neg_addr = 1; break; default: goto bad;