From 0fbdd5e56e73d103c6424ea68bf453115fa2449c Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 24 Sep 2015 07:58:29 +0200 Subject: [PATCH] fixed compiling LWIP_HAVE_LOOPIF after changing struct netif.ip6_addr to ip_addr_t --- src/core/netif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/netif.c b/src/core/netif.c index d82b644e..37e7374a 100644 --- a/src/core/netif.c +++ b/src/core/netif.c @@ -156,7 +156,7 @@ netif_init(void) #endif /* NO_SYS */ #if LWIP_IPV6 - IP6_ADDR(loop_netif.ip6_addr, 0, 0, 0, PP_HTONL(0x00000001UL)); + IP_ADDR6(loop_netif.ip6_addr, 0, 0, 0, PP_HTONL(0x00000001UL)); loop_netif.ip6_addr_state[0] = IP6_ADDR_VALID; #endif /* LWIP_IPV6 */