From fc280c7cd69073273b4ec4bb58d09833c2af062c Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Wed, 20 Jul 2011 06:56:20 +0200 Subject: [PATCH] Fixed bug #33804 LWIP_IPV6_MLD #define missing from mld6.c --- src/core/ipv6/mld6.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ipv6/mld6.c b/src/core/ipv6/mld6.c index 97132273..9db25bab 100644 --- a/src/core/ipv6/mld6.c +++ b/src/core/ipv6/mld6.c @@ -44,7 +44,7 @@ #include "lwip/opt.h" -#if LWIP_IPV6 /* don't build if not configured for use in lwipopts.h */ +#if LWIP_IPV6 && LWIP_IPV6_MLD /* don't build if not configured for use in lwipopts.h */ #include "lwip/mld6.h" #include "lwip/icmp6.h"