Skip to content

Commit

Permalink
Bugfix for dnsseed introduced by dnslookup
Browse files Browse the repository at this point in the history
  • Loading branch information
sipa committed Jun 2, 2011
1 parent 7c05877 commit e104c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net.cpp
Expand Up @@ -1062,7 +1062,7 @@ void DNSAddressSeed()

for (int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) {
vector<CAddress> vaddr;
if (Lookup(strDNSSeed[seed_idx], vaddr, NODE_NETWORK, true))
if (Lookup(strDNSSeed[seed_idx], vaddr, NODE_NETWORK, -1, true))
{
BOOST_FOREACH (CAddress& addr, vaddr)
{
Expand Down

0 comments on commit e104c79

Please sign in to comment.