From 951e323abd5ad7d7e253d04d6ff8c0a7a2c52b82 Mon Sep 17 00:00:00 2001 From: bodea Date: Tue, 30 Nov 2004 01:08:21 +0000 Subject: [PATCH] *** empty log message *** --- ppp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ppp.c b/ppp.c index a582cc9..9de23e0 100644 --- a/ppp.c +++ b/ppp.c @@ -1,6 +1,6 @@ // L2TPNS PPP Stuff -char const *cvs_id_ppp = "$Id: ppp.c,v 1.34 2004/11/30 00:50:03 bodea Exp $"; +char const *cvs_id_ppp = "$Id: ppp.c,v 1.35 2004/11/30 01:08:21 bodea Exp $"; #include #include @@ -478,9 +478,9 @@ void processlcp(tunnelidt t, sessionidt s, u8 *p, u16 l) if (!response) { // Send back a ConfigAck - q = makeppp(b, sizeof(b), p, l, t, s, PPPLCP); + q = response = makeppp(b, sizeof(b), p, l, t, s, PPPLCP); if (!q) return; - response = *q = ConfigAck; + *q = ConfigAck; } LOG(3, s, t, "Sending %s\n", ppp_lcp_types[response]); -- 2.20.1