Fix IPv6 favorites in q3_ui

This does however allow favorites to contain hostnames which was explicitly not allowed before.
This commit is contained in:
Zack Middleton 2013-02-08 18:11:03 -06:00
parent 81f92fe7f0
commit 75598f1a2b
2 changed files with 2 additions and 7 deletions

View file

@ -82,8 +82,8 @@ void Favorites_Add( void )
return; return;
} }
// use first empty or non-numeric available slot // use first empty available slot
if ((adrstr[0] < '0' || adrstr[0] > '9' ) && !best) if (!adrstr[0] && !best)
best = i+1; best = i+1;
} }

View file

@ -784,11 +784,6 @@ void ArenaServers_LoadFavorites( void )
if (!adrstr[0]) if (!adrstr[0])
continue; continue;
// quick sanity check to avoid slow domain name resolving
// first character must be numeric
if (adrstr[0] < '0' || adrstr[0] > '9')
continue;
// favorite server addresses must be maintained outside refresh list // favorite server addresses must be maintained outside refresh list
// this mimics local and global netadr's stored in client // this mimics local and global netadr's stored in client
// these can be fetched to fill ping list // these can be fetched to fill ping list