mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 13:11:30 +00:00
fix obvious bug, thanks mattn2
This commit is contained in:
parent
7a8c1ddaa6
commit
d77d3e0658
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ void NET_SetMulticast6(void)
|
||||||
|
|
||||||
memcpy(&curgroup.ipv6mr_multiaddr, &addr.sin6_addr, sizeof(curgroup.ipv6mr_multiaddr));
|
memcpy(&curgroup.ipv6mr_multiaddr, &addr.sin6_addr, sizeof(curgroup.ipv6mr_multiaddr));
|
||||||
|
|
||||||
if(!*net_mcast6iface->string)
|
if(*net_mcast6iface->string)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
curgroup.ipv6mr_interface = atoi(net_mcast6iface->string);
|
curgroup.ipv6mr_interface = atoi(net_mcast6iface->string);
|
||||||
|
|
Loading…
Reference in a new issue