aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-16 20:57:08 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-16 20:57:08 +0000
commita3a9257fe11212f3e8dab01e63a7441b74519e5f (patch)
treefbdd726329c239b92ca1cae53cf7e966bbd67feb /code/qcommon
parent7fce3594438468fa684fa67aabb64cde177b11ef (diff)
downloadioquake3-aero-a3a9257fe11212f3e8dab01e63a7441b74519e5f.tar.gz
ioquake3-aero-a3a9257fe11212f3e8dab01e63a7441b74519e5f.zip
fix obvious bug, thanks mattn2
git-svn-id: svn://svn.icculus.org/quake3/trunk@1323 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/net_ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/net_ip.c b/code/qcommon/net_ip.c
index 2f8ee1b..d7a883a 100644
--- a/code/qcommon/net_ip.c
+++ b/code/qcommon/net_ip.c
@@ -928,7 +928,7 @@ void NET_SetMulticast6(void)
memcpy(&curgroup.ipv6mr_multiaddr, &addr.sin6_addr, sizeof(curgroup.ipv6mr_multiaddr));
- if(!*net_mcast6iface->string)
+ if(*net_mcast6iface->string)
{
#ifdef _WIN32
curgroup.ipv6mr_interface = atoi(net_mcast6iface->string);