diff --git a/uip/uip.c b/uip/uip.c index 40c018c..6240504 100644 --- a/uip/uip.c +++ b/uip/uip.c @@ -919,7 +919,7 @@ uip_process(u8_t flag) __banked /* Check if we have a DHCP packet, otherwise check if the packet is destined for our IP address. */ #if !UIP_CONF_IPV6 - if(!(BUF->proto == UIP_PROTO_UDP && UDPBUF->destport == HTONS(DHCPC_CLIENT_PORT))) { + if(!(BUF->proto == UIP_PROTO_UDP && UDPBUF->destport == HTONS(DHCP_CLIENT_PORT))) { if(!uip_ipaddr_cmpx(BUF->destipaddr, uip_hostaddr)) { UIP_STAT(++uip_stat.ip.drop); goto drop;