diff options
| author | Roy Marples <roy@marples.name> | 2015-01-20 12:04:42 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2015-01-20 12:04:42 +0000 |
| commit | 515dd1616f86bca80f760736989a5b280f6b4651 (patch) | |
| tree | 130a1a23c2957721e254c8486faec78f95be813d /if.c | |
| parent | 0e176027029613da9f7bb4ebf0bf82c8a2a8edb1 (diff) | |
| download | dhcpcd-515dd1616f86bca80f760736989a5b280f6b4651.tar.xz | |
Revert part of the prior patch and only free IPv6 if state when
freeing and not dropping so we retain IPv6 addresses we don't
generally control on carrier down.
Diffstat (limited to 'if.c')
| -rw-r--r-- | if.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,9 +83,9 @@ if_free(struct interface *ifp) return; ipv4_free(ifp); dhcp_free(ifp); - ipv6_free(ifp); dhcp6_free(ifp); ipv6nd_free(ifp); + ipv6_free(ifp); free_options(ifp->options); free(ifp); } |
