From 402597c2cb154fe1390aa76896e7bf19dea19d3a Mon Sep 17 00:00:00 2001 From: goldsimon Date: Mon, 22 Feb 2010 12:57:00 +0000 Subject: [PATCH] Fixed bug #28970 (invalid preprocessor macro introduced with LWIP_TCPIP_CORE_LOCKING_INPUT) --- src/api/tcpip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/tcpip.c b/src/api/tcpip.c index e45d86cb..6753fb82 100644 --- a/src/api/tcpip.c +++ b/src/api/tcpip.c @@ -94,7 +94,7 @@ tcpip_thread(void *arg) break; #endif /* LWIP_NETCONN */ -#if LWIP_TCPIP_CORE_LOCKING_INPUT +#if !LWIP_TCPIP_CORE_LOCKING_INPUT case TCPIP_MSG_INPKT: LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: PACKET %p\n", (void *)msg)); #if LWIP_ETHERNET