added missing return statement in RsDirUtil::saveStringToFile() (thx to sehraf)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8078 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
electron128 2015-03-26 07:21:07 +00:00
parent 0aaf8d7f64
commit 0017f246e8

View File

@ -732,6 +732,7 @@ bool RsDirUtil::saveStringToFile(const std::string &file, const std::string &str
return false;
}
out << str;
return true;
}
bool RsDirUtil::loadStringFromFile(const std::string &file, std::string &str)