From f15c575a0f586a10db80b5b2383f00ac7b72fbbf Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 10 Mar 2014 17:37:24 +0000 Subject: [PATCH] Fix reconfigure behaviour --- dhcp6.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 2.47.3