dhcp: Remove invalid warning in dhcp-state related logs

Introduced in 1343f47b0
This commit is contained in:
David Cermak
2024-08-21 16:47:46 +08:00
committed by David Čermák
parent bced058f73
commit f1c0a3d820
-1
View File
@@ -1109,7 +1109,6 @@ dhcp_discover(struct netif *netif)
ip4_addr_set_any(&dhcp->offered_ip_addr);
dhcp_set_state(dhcp, DHCP_STATE_SELECTING);
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_discover(): dhcp state is DISCOVER\n"));
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("dhcp_select: could not allocate DHCP request\n"));
/* create and initialize the DHCP message header */
p_out = dhcp_create_msg(netif, dhcp, DHCP_DISCOVER, &options_out_len);
if (p_out != NULL) {