diff options
| author | Roy Marples <roy@marples.name> | 2019-06-20 16:44:21 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2019-06-20 16:44:21 +0100 |
| commit | 5de2750e2efb1a086c89e8890c008e084a9651b5 (patch) | |
| tree | 33553894a5f3ab8e292bdcc2677cce6b79c1d744 | |
| parent | 03425aea90fe3942d38a20e903986a2464658a99 (diff) | |
| download | dhcpcd-5de2750e2efb1a086c89e8890c008e084a9651b5.tar.xz | |
DHCP6: Fix INFORM support
| -rw-r--r-- | src/dhcp6.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |
