From: Paul Donald Date: Wed, 22 Oct 2025 14:36:22 +0000 (+0200) Subject: dhcpv4: bump problem scenario up to warn X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=0d0fac30075f639fc2d82e5327e307cba30e2687;p=project%2Fodhcpd.git dhcpv4: bump problem scenario up to warn This way a potential failure scenario is visible with odhcpds default log level of warn. Closes https://github.com/openwrt/odhcpd/issues/228 Signed-off-by: Paul Donald Link: https://github.com/openwrt/odhcpd/pull/287 Signed-off-by: Álvaro Fernández Rojas --- diff --git a/src/dhcpv4.c b/src/dhcpv4.c index 79c07f8..3fc1a3d 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -423,7 +423,7 @@ static bool dhcpv4_assign(struct interface *iface, struct dhcp_assignment *a, } } - notice("Can't assign any IP address -> address space is full"); + warn("Can't assign any IP address -> address space is full"); return false; }