mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-15 01:17:16 -05:00
fixed ambiguous variable
This commit is contained in:
parent
1d9dc657fd
commit
dc2f2f5eb4
@ -1886,11 +1886,15 @@ void p3turtle::handleTunnelResult(RsTurtleTunnelOkItem *item)
|
|||||||
// because there is not too much file hashes to be active at a time,
|
// because there is not too much file hashes to be active at a time,
|
||||||
// and this mostly prevents from sending the hash back in the tunnel.
|
// and this mostly prevents from sending the hash back in the tunnel.
|
||||||
|
|
||||||
bool found = false ;
|
#ifdef P3TURTLE_DEBUG
|
||||||
|
bool ext_found = false ;
|
||||||
|
#endif
|
||||||
for(std::map<TurtleFileHash,TurtleHashInfo>::iterator it(_incoming_file_hashes.begin());it!=_incoming_file_hashes.end();++it)
|
for(std::map<TurtleFileHash,TurtleHashInfo>::iterator it(_incoming_file_hashes.begin());it!=_incoming_file_hashes.end();++it)
|
||||||
if(it->second.last_request == item->request_id)
|
if(it->second.last_request == item->request_id)
|
||||||
{
|
{
|
||||||
found = true ;
|
#ifdef P3TURTLE_DEBUG
|
||||||
|
ext_found = true ;
|
||||||
|
#endif
|
||||||
|
|
||||||
{
|
{
|
||||||
// add the tunnel uniquely
|
// add the tunnel uniquely
|
||||||
@ -1917,7 +1921,7 @@ void p3turtle::handleTunnelResult(RsTurtleTunnelOkItem *item)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifdef P3TURTLE_DEBUG
|
#ifdef P3TURTLE_DEBUG
|
||||||
if(!found)
|
if(!ext_found)
|
||||||
std::cerr << "p3turtle: error. Could not find hash that emmitted tunnel request " << reinterpret_cast<void*>(item->tunnel_id) << std::endl ;
|
std::cerr << "p3turtle: error. Could not find hash that emmitted tunnel request " << reinterpret_cast<void*>(item->tunnel_id) << std::endl ;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user