This commit is contained in:
Arvid Norberg 2014-12-30 17:05:34 +00:00
parent c443193ce0
commit f77ba409fa
1 changed files with 2 additions and 2 deletions

View File

@ -1678,14 +1678,14 @@ int main(int argc, char* argv[])
for (std::set<std::string>::iterator i = seeds.begin()
, end(seeds.end()); i != end; ++i)
{
st.handle.remove_url_seed(*i);
h.remove_url_seed(*i);
}
seeds = h.http_seeds();
for (std::set<std::string>::iterator i = seeds.begin()
, end(seeds.end()); i != end; ++i)
{
st.handle.remove_http_seed(*i);
h.remove_http_seed(*i);
}
}