mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed variable scope problem in introserver.cc
This commit is contained in:
parent
ecf4a991c0
commit
49605a33dc
@ -624,7 +624,8 @@ bool RsIntroStore::loadPeers()
|
||||
std::cerr << "RsIntroStore::loadPeers() Cannot open file, trying tmp";
|
||||
std::cerr << std::endl;
|
||||
|
||||
FILE *fd = fopen(mTempStoreFile.c_str(), "r");
|
||||
fd = fopen(mTempStoreFile.c_str(), "r");
|
||||
|
||||
if (!fd)
|
||||
{
|
||||
std::cerr << "RsIntroStore::loadPeers() Cannot open tmp file";
|
||||
|
Loading…
Reference in New Issue
Block a user