From: Roy Marples Date: Tue, 17 Sep 2019 08:19:02 +0000 (+0100) Subject: DHCP: Re-enable the debug log of already bound messages X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dcb084c4b4cb7cd24784ce4e0c1bf0c91b6f1c4;p=thirdparty%2Fdhcpcd.git DHCP: Re-enable the debug log of already bound messages It's handy for debugging from whence the packet came even if already bound. --- diff --git a/src/dhcp.c b/src/dhcp.c index 4b4c8796..0a87e036 100644 --- a/src/dhcp.c +++ b/src/dhcp.c @@ -2959,10 +2959,7 @@ dhcp_handledhcp(struct interface *ifp, struct bootp *bootp, size_t bootp_len, } if (state->state == DHS_BOUND) { - /* Before we supported FORCERENEW we closed off the raw - * port so we effectively ignored all messages. - * As such we'll not log by default here. */ - //LOGDHCP(logdebugx, "bound, ignoring"); + LOGDHCP(logdebugx, "bound, ignoring"); return; }