mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
fixed compilation error in gcc 4.6
This commit is contained in:
parent
1ac95d102a
commit
8d98722b46
4 changed files with 18 additions and 17 deletions
|
@ -45,7 +45,7 @@ namespace data
|
|||
|
||||
NetDb netdb;
|
||||
|
||||
NetDb::NetDb (): m_IsRunning (false), m_Thread (0)
|
||||
NetDb::NetDb (): m_IsRunning (false), m_ReseedRetries (0), m_Thread (0)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -223,7 +223,7 @@ namespace data
|
|||
if (reseed)
|
||||
{
|
||||
reseeder->reseedNow();
|
||||
m_reseedRetries++;
|
||||
m_ReseedRetries++;
|
||||
}
|
||||
int numRouters = 0;
|
||||
boost::filesystem::directory_iterator end;
|
||||
|
@ -244,7 +244,7 @@ namespace data
|
|||
}
|
||||
}
|
||||
LogPrint (numRouters, " routers loaded");
|
||||
if (numRouters < 100 && m_reseedRetries < 10)
|
||||
if (numRouters < 100 && m_ReseedRetries < 10)
|
||||
Load(directory, true); // Reseed
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue