diff options
| author | Roy Marples <roy@marples.name> | 2016-11-23 21:10:10 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2016-11-23 21:10:10 +0000 |
| commit | f3ee8e22d0bb20ccc9d35e97018fad47a97374fd (patch) | |
| tree | 72157db0d3217bd96bf89fa6c08d3e2d16ccfac5 /ipv6.c | |
| parent | 69560ba432ba64433e2927b5a30444ade71fa6a7 (diff) | |
| download | dhcpcd-f3ee8e22d0bb20ccc9d35e97018fad47a97374fd.tar.xz | |
Fix IPv6 DAD on OpenBSD.
Diffstat (limited to 'ipv6.c')
| -rw-r--r-- | ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -566,7 +566,7 @@ ipv6_checkaddrflags(void *arg) return; } - if (!(ia->addr_flags & IN6_IFF_TENTATIVE)) { + if (!(flags & IN6_IFF_TENTATIVE)) { /* Simulate the kernel announcing the new address. */ ipv6_handleifa(ia->iface->ctx, RTM_NEWADDR, ia->iface->ctx->ifaces, ia->iface->name, |
