From 6773213d7f8f489407a3e7d7e60f7f3034c12c5c Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 26 Apr 2011 02:32:05 +0000 Subject: Fix a little quirk still --- src/qcommon/net_ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit