[quake3-commits] r1948 - trunk/code/qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Apr 25 22:32:05 EDT 2011


Author: thilo
Date: 2011-04-25 22:32:05 -0400 (Mon, 25 Apr 2011)
New Revision: 1948

Modified:
   trunk/code/qcommon/net_ip.c
Log:
Fix a little quirk still


Modified: trunk/code/qcommon/net_ip.c
===================================================================
--- trunk/code/qcommon/net_ip.c	2011-04-26 02:30:12 UTC (rev 1947)
+++ trunk/code/qcommon/net_ip.c	2011-04-26 02:32:05 UTC (rev 1948)
@@ -425,7 +425,7 @@
 	if(curbyte && memcmp(addra, addrb, curbyte))
 			return qfalse;
 
-	netmask &= ~0x07;
+	netmask &= 0x07;
 	if(netmask)
 	{
 		cmpmask = (1 << netmask) - 1;



More information about the quake3-commits mailing list