From f1c0a3d820da0a3eb66889bd1eb1737b074760bd Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 20 Jun 2024 17:06:57 +0200 Subject: [PATCH] dhcp: Remove invalid warning in dhcp-state related logs Introduced in 1343f47b0 --- src/core/ipv4/dhcp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/ipv4/dhcp.c b/src/core/ipv4/dhcp.c index 65e99a2df..e881c53ab 100644 --- a/src/core/ipv4/dhcp.c +++ b/src/core/ipv4/dhcp.c @@ -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) {