From: Gert Doering Date: Sat, 28 Nov 2015 19:58:37 +0000 (+0100) Subject: Un-break compilation on *BSD X-Git-Tag: v2.4_alpha1~185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a82a9ac0bef6db58858a42b4dc500ae9e09682d;p=thirdparty%2Fopenvpn.git Un-break compilation on *BSD Commit 2191c47165 introduced code to handle IP address query on multihoming hosts for IP_PKTINFO-supporting OSes, but all the BSDs need the "#elsif IP_RECVDSTADDR" variant... add code equivalent to what we have in socket.c/print_link_socket_actual_ex() Tested on FreeBSD 9.3/sparc64 Signed-off-by: Gert Doering Acked-by: Arne Schwabe Message-Id: <1448740717-60914-1-git-send-email-gert@greenie.muc.de> URL: http://article.gmane.org/gmane.network.openvpn.devel/10648 --- diff --git a/src/openvpn/init.c b/src/openvpn/init.c index 5c1708796..179c7efba 100644 --- a/src/openvpn/init.c +++ b/src/openvpn/init.c @@ -1293,7 +1293,11 @@ initialization_sequence_completed (struct context *c, const unsigned int flags) switch (local.addr.sa.sa_family) { case AF_INET: +#ifdef IP_PKTINFO local.addr.in4.sin_addr = actual->pi.in4.ipi_spec_dst; +#else + local.addr.in4.sin_addr = actual->pi.in4; +#endif break; case AF_INET6: local.addr.in6.sin6_addr = actual->pi.in6.ipi6_addr;