From ca1ad99bea13e8a90c6050a1a1de84677ae015a8 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Mon, 4 Jun 2012 15:31:29 +0200 Subject: [PATCH] PPPoE reauth bug fixed --- src/netif/ppp/ppp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/netif/ppp/ppp.c b/src/netif/ppp/ppp.c index 994ae4d2..928a53e6 100644 --- a/src/netif/ppp/ppp.c +++ b/src/netif/ppp/ppp.c @@ -1866,7 +1866,8 @@ void ppp_link_down(int pd) { #if PPPOE_SUPPORT if (ppp_control_list[pd].ethif) { - pppoe_disconnect(ppp_control_list[pd].pppoe_sc); +/* FIXME: find a way to set PPPoE down without disconnecting and freeing PPPoE structures */ +/* pppoe_disconnect(ppp_control_list[pd].pppoe_sc); */ } else #endif /* PPPOE_SUPPORT */ {