diff options
| author | Roy Marples <roy@marples.name> | 2020-02-06 15:08:21 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-02-06 15:08:53 +0000 |
| commit | 4f2e7d1065a1a431bdab85b809e0c9a77f1347a3 (patch) | |
| tree | 55da277fad098dcb06324d6390799907e8d2dd81 | |
| parent | 1a02bb692ec0fcc4da7ed177609cd6dc6438005f (diff) | |
| download | dhcpcd-4f2e7d1065a1a431bdab85b809e0c9a77f1347a3.tar.xz | |
Add an extra fallthrough to prior
| -rw-r--r-- | src/dhcp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhcp6.c b/src/dhcp6.c index 542df3a5..45f87b7b 100644 --- a/src/dhcp6.c +++ b/src/dhcp6.c @@ -3961,7 +3961,7 @@ dhcp6_abort(struct interface *ifp) eloop_timeout_delete(ifp->ctx->eloop, dhcp6_sendinform, ifp); switch (state->state) { case DH6S_DISCOVER: /* FALLTHROUGH */ - case DH6S_REQUEST: + case DH6S_REQUEST: /* FALLTHROUGH */ case DH6S_INFORM: state->state = DH6S_INIT; break; |
