From: Roy Marples Date: Fri, 14 Feb 2014 09:13:19 +0000 (+0000) Subject: If the prefix is not on link, nor autoconf and we don't know about it X-Git-Tag: v6.3.0~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4242c5f2b7be6a55868f30cb5a7bb647b77db6ee;p=thirdparty%2Fdhcpcd.git If the prefix is not on link, nor autoconf and we don't know about it then just continue instead of logging a bogus error. Thanks to David Purser. --- diff --git a/ipv6nd.c b/ipv6nd.c index 2e8a4e93..e77632ad 100644 --- a/ipv6nd.c +++ b/ipv6nd.c @@ -809,7 +809,7 @@ ipv6nd_handlera(struct ipv6_ctx *ctx, struct interface *ifp, ND_OPT_PI_FLAG_AUTO) && !(pi->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_ONLINK)) - break; + continue; ap = calloc(1, sizeof(*ap)); if (ap == NULL) { syslog(LOG_ERR, "%s: %m", __func__);