mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 12:32:09 +00:00
Fix uninitialized usage warnings on MacOSX.
This commit is contained in:
parent
eb3b59308b
commit
ca5fabe8c6
1 changed files with 1 additions and 1 deletions
|
@ -703,7 +703,7 @@ qboolean Sys_IsLANAddress( netadr_t adr ) {
|
|||
|
||||
addrsize = sizeof(adr.ip);
|
||||
}
|
||||
else if(adr.type == NA_IP6)
|
||||
else
|
||||
{
|
||||
compareip = (byte *) &((struct sockaddr_in6 *) &localIP[index].addr)->sin6_addr;
|
||||
comparemask = (byte *) &((struct sockaddr_in6 *) &localIP[index].netmask)->sin6_addr;
|
||||
|
|
Loading…
Reference in a new issue