From 0d0fac30075f639fc2d82e5327e307cba30e2687 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Wed, 22 Oct 2025 16:36:22 +0200 Subject: [PATCH] dhcpv4: bump problem scenario up to warn MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/dhcpv4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2