Skip to content
Snippets Groups Projects
Commit 01d441e6 authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

Merge remote-tracking branch 'Furyhunter/ipv6-osx-fix'

parents 8cccfa55 062a746f
No related branches found
No related tags found
No related merge requests found
...@@ -651,7 +651,7 @@ static void SOCK_Send(void) ...@@ -651,7 +651,7 @@ static void SOCK_Send(void)
if (broadcastaddress[i].any.sa_family == AF_INET) if (broadcastaddress[i].any.sa_family == AF_INET)
d = d4; d = d4;
#ifdef HAVE_IPV6 #ifdef HAVE_IPV6
if (broadcastaddress[i].any.sa_family == AF_INET6) else if (broadcastaddress[i].any.sa_family == AF_INET6)
d = d6; d = d6;
#endif #endif
else else
...@@ -690,7 +690,7 @@ static void SOCK_Send(void) ...@@ -690,7 +690,7 @@ static void SOCK_Send(void)
if (clientaddress[doomcom->remotenode].any.sa_family == AF_INET) if (clientaddress[doomcom->remotenode].any.sa_family == AF_INET)
d = d4; d = d4;
#ifdef HAVE_IPV6 #ifdef HAVE_IPV6
if (clientaddress[doomcom->remotenode].any.sa_family == AF_INET6) else if (clientaddress[doomcom->remotenode].any.sa_family == AF_INET6)
d = d6; d = d6;
#endif #endif
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment