From d91b54882a6ae134519b3703d93c3c3df96ee020 Mon Sep 17 00:00:00 2001 From: likewise Date: Fri, 16 Apr 2004 22:36:48 +0000 Subject: [PATCH] Fixed #ifdef LWIP_DHCP to #if LWIP_DHCP. --- src/core/dhcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index f8cb20c0..9b22b5d8 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -79,7 +79,7 @@ #include "lwip/opt.h" #include "lwip/dhcp.h" -#ifdef LWIP_DHCP /* don't build if not configured for use in lwipopt.h */ +#if LWIP_DHCP /* don't build if not configured for use in lwipopt.h */ /** global transaction identifier, must be * unique for each DHCP request. */