Fix a little quirk still
This commit is contained in:
parent
797d127dfc
commit
a0582fb21a
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ qboolean NET_CompareBaseAdrMask(netadr_t a, netadr_t b, int netmask)
|
||||||
if(curbyte && memcmp(addra, addrb, curbyte))
|
if(curbyte && memcmp(addra, addrb, curbyte))
|
||||||
return qfalse;
|
return qfalse;
|
||||||
|
|
||||||
netmask &= ~0x07;
|
netmask &= 0x07;
|
||||||
if(netmask)
|
if(netmask)
|
||||||
{
|
{
|
||||||
cmpmask = (1 << netmask) - 1;
|
cmpmask = (1 << netmask) - 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue