(svn r15917) -Codechange: remove the latest traces of NetworkAddress::GetIP.

This commit is contained in:
rubidium
2009-04-02 20:39:30 +00:00
parent 785779ca62
commit f22566f8df
6 changed files with 21 additions and 38 deletions

View File

@@ -65,7 +65,7 @@ static void NetworkGameListHandleDelayedInsert()
* @return a point to the newly added or already existing item */
NetworkGameList *NetworkGameListAddItem(NetworkAddress address)
{
if (!address.IsResolved()) return NULL;
if (StrEmpty(address.GetHostname())) return NULL;
NetworkGameList *item, *prev_item;