From 11af9d32375fa8b05b2b60a447807e8dab9d5f4a Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Mon, 27 Jun 2011 20:07:26 +0000 Subject: [PATCH] IOQ3 commit 1948 --- reaction/code/qcommon/net_ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reaction/code/qcommon/net_ip.c b/reaction/code/qcommon/net_ip.c index 2708e9b2..fe5c8da6 100644 --- a/reaction/code/qcommon/net_ip.c +++ b/reaction/code/qcommon/net_ip.c @@ -425,7 +425,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;