From: Roy Marples Date: Thu, 2 Oct 2014 10:54:02 +0000 (+0000) Subject: Don't daemonise on delegated address dad. X-Git-Tag: v6.5.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd1bc587249a5c9d4e5ca8cf9852c7f1ede43901;p=thirdparty%2Fdhcpcd.git Don't daemonise on delegated address dad. --- diff --git a/dhcp6.c b/dhcp6.c index 44a6386a..cb29e0f6 100644 --- a/dhcp6.c +++ b/dhcp6.c @@ -1217,7 +1217,8 @@ dhcp6_dadcallback(void *arg) syslog(LOG_DEBUG, "%s: DHCPv6 DAD completed", ifp->name); script_runreason(ifp, state->reason); - dhcpcd_daemonise(ifp->ctx); + if (state->state != DH6S_DELEGATED) + dhcpcd_daemonise(ifp->ctx); } } }