From: Roy Marples Date: Thu, 20 Jun 2019 15:44:21 +0000 (+0100) Subject: DHCP6: Fix INFORM support X-Git-Tag: v7.2.3~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5de2750e2efb1a086c89e8890c008e084a9651b5;p=thirdparty%2Fdhcpcd.git DHCP6: Fix INFORM support --- diff --git a/src/dhcp6.c b/src/dhcp6.c index e977e475..dc911ee9 100644 --- a/src/dhcp6.c +++ b/src/dhcp6.c @@ -3783,6 +3783,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;