- fix typo in previous commit to net_ip.c

- Make servers send heartbeats to master servers in ipv4 as well as ipv6 if master server has both protocols
This commit is contained in:
Thilo Schulz 2009-06-23 00:59:47 +00:00
parent 78254a626f
commit 948f7a6015
2 changed files with 58 additions and 23 deletions

View file

@ -285,7 +285,7 @@ static qboolean Sys_StringToSockaddr(const char *s, struct sockaddr *sadr, int s
if(family == AF_UNSPEC)
{
// Decide here and now which protocol family to use
if((net_enabled->integer & NET_PRIOV6)
if(net_enabled->integer & NET_PRIOV6)
{
if(net_enabled->integer & NET_ENABLEV6)
search = SearchAddrInfo(res, AF_INET6);