fixed DHT bug

This commit is contained in:
Arvid Norberg 2010-01-09 00:38:55 +00:00
parent ce18e3b907
commit cb5bad09a4
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ bool routing_table::need_bootstrap() const
, end(m_buckets.end()); i != end; ++i)
{
for (bucket_t::const_iterator j = i->live_nodes.begin()
, end(i->live_nodes.end()); j != end; ++i)
, end(i->live_nodes.end()); j != end; ++j)
{
if (j->confirmed()) return false;
}