summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-04-26 02:32:05 +0000
committerTim Angus <tim@ngus.net>2013-01-09 15:49:50 +0000
commit6773213d7f8f489407a3e7d7e60f7f3034c12c5c (patch)
tree78a10eef8837dbed15b8913a4438bd2c1f796fb2
parent36cfed27430ed0f027aa47d47205d00f9718820c (diff)
Fix a little quirk still
-rw-r--r--src/qcommon/net_ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/net_ip.c b/src/qcommon/net_ip.c
index a64cd04e..682f4689 100644
--- a/src/qcommon/net_ip.c
+++ b/src/qcommon/net_ip.c
@@ -426,7 +426,7 @@ qboolean NET_CompareBaseAdrMask(netadr_t a, netadr_t b, int netmask)
if(curbyte && memcmp(addra, addrb, curbyte))
return qfalse;
- netmask &= ~0x07;
+ netmask &= 0x07;
if(netmask)
{
cmpmask = (1 << netmask) - 1;