Small fix to universal script and some extra debugging.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@874 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-12-07 17:51:11 +00:00
parent 00f0f3e067
commit b3a0d30bbc
3 changed files with 48 additions and 3 deletions

View file

@ -167,6 +167,11 @@ int FileIndexStore::RequestDirDetails(std::string uid, std::string path, DirDeta
int FileIndexStore::RequestDirDetails(void *ref, DirDetails &details, uint32_t flags) const
{
lockData();
#ifdef FIS_DEBUG
std::cerr << "FileIndexStore::RequestDirDetails() ref=" << ref << " flags: " << flags << std::endl;
#endif
bool found = true;
std::map<RsPeerId, FileIndex *>::const_iterator pit;