mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-22 04:39:55 -04:00
fixed variable scope problem in introserver.cc
This commit is contained in:
parent
ecf4a991c0
commit
49605a33dc
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue