Skip to content

Commit

Permalink
Fix ipv6 server query
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Schulz committed Jun 25, 2011
1 parent fe7b088 commit 88f1fc7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions code/client/cl_main.c
Expand Up @@ -3864,17 +3864,14 @@ void CL_GlobalServers_f( void ) {

if(v4enabled)
{
Com_sprintf(command, sizeof(command), "getserversExt %s %s ipv6",
Com_sprintf(command, sizeof(command), "getserversExt %s %s",
cl_gamename->string, Cmd_Argv(2));
}
else
{
Com_sprintf(command, sizeof(command), "getserversExt %s %s",
Com_sprintf(command, sizeof(command), "getserversExt %s %s ipv6",
cl_gamename->string, Cmd_Argv(2));
}

// TODO: test if we only have an IPv6 connection. If it's the case,
// request IPv6 servers only by appending " ipv6" to the command
}
else
Com_sprintf(command, sizeof(command), "getservers %s", Cmd_Argv(2));
Expand Down

0 comments on commit 88f1fc7

Please sign in to comment.