From 54fc708c764472aadd6879f7bb8be3e08fba3441 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 8 Oct 2018 11:42:28 +0200 Subject: [PATCH] Apply fix from Axel Lin (Build issue if LWIP_DHCP is set to 0) --- src/include/lwip/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index abecdb45..1ccd2a83 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -927,7 +927,7 @@ * LWIP_DHCP_DOES_ACD_CHECK==1: Perform address conflict detection on the dhcp address. */ #if !defined LWIP_DHCP_DOES_ACD_CHECK || defined __DOXYGEN__ -#define LWIP_DHCP_DOES_ACD_CHECK 1 +#define LWIP_DHCP_DOES_ACD_CHECK LWIP_DHCP #endif /**