From: Roy Marples Date: Mon, 10 Mar 2014 17:37:24 +0000 (+0000) Subject: Fix reconfigure behaviour X-Git-Tag: v6.3.2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f15c575a0f586a10db80b5b2383f00ac7b72fbbf;p=thirdparty%2Fdhcpcd.git Fix reconfigure behaviour --- diff --git a/dhcp6.c b/dhcp6.c index c429a5c0..4bd6b9ca 100644 --- a/dhcp6.c +++ b/dhcp6.c @@ -82,6 +82,7 @@ static const struct dhcp6_op dhcp6_ops[] = { { DHCP6_CONFIRM, "CONFIRM6" }, { DHCP6_INFORMATION_REQ, "INFORM6" }, { DHCP6_RELEASE, "RELEASE6" }, + { DHCP6_RECONFIGURE, "RECONFIURE6" }, { 0, NULL } }; @@ -2283,9 +2284,9 @@ dhcp6_handledata(void *arg) syslog(LOG_ERR, "%s: unsupported Reconfigure Message type", ifp->name); - return; + break; } - break; + return; default: syslog(LOG_ERR, "%s: invalid DHCP6 type %s (%d)", ifp->name, op, r->type);