From c5cd8d320642fad15861e412dbd489fa9553e38b Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 16 May 2025 13:19:31 +0100 Subject: [PATCH] Fix prior for FreeBSD and OpenBSD --- src/ipv6.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipv6.c b/src/ipv6.c index 9261f9a4..30f37652 100644 --- a/src/ipv6.c +++ b/src/ipv6.c @@ -597,7 +597,7 @@ ipv6_checkaddrflags(void *arg) /* Simulate the kernel announcing the new address. */ ipv6_handleifa(ia->iface->ctx, RTM_NEWADDR, ia->iface->ctx->ifaces, ia->iface->name, - &ia->addr, ia->prefix_len, ia->dstaddr, flags, 0); + &ia->addr, ia->prefix_len, &ia->dstaddr, flags, 0); } else { /* Still tentative? Check again in a bit. */ eloop_timeout_add_msec(ia->iface->ctx->eloop, -- 2.47.3