lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] [PATCH] PPPoE: Fix build when PPPOE_TODO is defined


From: Jacob Kroon
Subject: [lwip-devel] [PATCH] PPPoE: Fix build when PPPOE_TODO is defined
Date: Mon, 17 Dec 2018 21:48:41 +0100

---
 src/include/netif/ppp/pppoe.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/include/netif/ppp/pppoe.h b/src/include/netif/ppp/pppoe.h
index 08ab7ab5..3c41445c 100644
--- a/src/include/netif/ppp/pppoe.h
+++ b/src/include/netif/ppp/pppoe.h
@@ -150,8 +150,8 @@ struct pppoe_softc {
   u8_t sc_state;               /* discovery phase or session connected */
 
 #ifdef PPPOE_TODO
-  u8_t *sc_service_name;       /* if != NULL: requested name of service */
-  u8_t *sc_concentrator_name;  /* if != NULL: requested concentrator id */
+  char *sc_service_name;       /* if != NULL: requested name of service */
+  char *sc_concentrator_name;  /* if != NULL: requested concentrator id */
 #endif /* PPPOE_TODO */
   u8_t sc_ac_cookie[PPPOE_MAX_AC_COOKIE_LEN]; /* content of AC cookie we must 
echo back */
   u8_t sc_ac_cookie_len;       /* length of cookie data */
-- 
2.11.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]