From aac34157167b4e4822939925632674db9eafa3a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Sat, 6 Dec 2025 13:43:26 +0100 Subject: [PATCH] odhcp6c: drop script_sync_delay override MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit allow_slaac_only is declared as a boolean in the OpenWrt wiki and the script doesn't pass any value at all: https://github.com/openwrt/openwrt/blob/00c8b5c612d07e36ede1e9ebe2b44ba88fa90000/package/network/ipv6/odhcp6c/files/dhcpv6.sh#L94 Signed-off-by: Álvaro Fernández Rojas --- src/odhcp6c.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/odhcp6c.c b/src/odhcp6c.c index 16fd6d4..349f4ee 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -431,9 +431,6 @@ int main(_o_unused int argc, char* const argv[]) } } - if (config_dhcp->allow_slaac_only > 0) - script_sync_delay = config_dhcp->allow_slaac_only; - openlog("odhcp6c", logopt, LOG_DAEMON); if (!verbosity) setlogmask(LOG_UPTO(LOG_WARNING)); -- 2.30.2