# HG changeset patch # User Roy Marples # Date 1590779269 -10800 # Node ID ffa72e19fcb87f40f22d4e577aea8e6aeecdef77 # Parent e60767dab375ec831c2af819a6975ab555edb53f Solaris: Fix sending RS probes diff -r e60767dab375 -r ffa72e19fcb8 src/ipv6nd.c --- a/src/ipv6nd.c Fri May 29 22:01:10 2020 +0300 +++ b/src/ipv6nd.c Fri May 29 22:07:49 2020 +0300 @@ -364,6 +364,12 @@ } #endif #ifdef __sun + if (state->nd_fd == -1) { + if (ipv6nd_openif(ifp) == -1) { + logerr(__func__); + return; + } + } s = state->nd_fd; #else if (ctx->nd_fd == -1) {