fixed typo

This commit is contained in:
Arvid Norberg 2007-01-03 11:43:00 +00:00
parent 7344c4823b
commit 726aa89434
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ namespace libtorrent { namespace
// (that have connected to us)
if (!i->second->is_local()) continue;
// don't send out peers that we haven't successfully connected to
if (i->second->connecting()) continue;
if (i->second->is_connecting()) continue;
cs.push_back(i->first);
}
std::list<tcp::endpoint> added_peers, dropped_peers;