From: Roy Marples Date: Thu, 20 Jun 2019 15:44:21 +0000 (+0100) Subject: DHCP6: Fix INFORM support X-Git-Tag: v8.0.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09aee8a42bb6abf6ce0efce4fb4c3a3b951ff042;p=thirdparty%2Fdhcpcd.git DHCP6: Fix INFORM support --- diff --git a/src/dhcp6.c b/src/dhcp6.c index aba6d42b..79a0d730 100644 --- a/src/dhcp6.c +++ b/src/dhcp6.c @@ -3766,6 +3766,8 @@ dhcp6_start(struct interface *ifp, enum DH6S init_state) /* No DHCPv6 config, no existing state * so nothing to do. */ return 0; + case DH6S_INFORM: + break; default: init_state = DH6S_INIT; break;