mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
- removed LinksCloud from plugins (based on obsolete cache system)
- removed copy constructor of RsGenericId from std::string as it allowed many inconsistencies and double transforms of IDs from/to strings git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7289 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
160e04fe9a
commit
33abca82e5
33 changed files with 97 additions and 143 deletions
|
@ -231,7 +231,7 @@ bool RsPluginManager::loadPlugin(RsPlugin *p)
|
|||
PluginInfo pinfo ;
|
||||
pinfo.plugin = p ;
|
||||
pinfo.file_name = "No file" ;
|
||||
pinfo.file_hash = "No hash" ;
|
||||
pinfo.file_hash.clear() ;
|
||||
pinfo.info_string = "" ;
|
||||
|
||||
p->setPlugInHandler(this); // WIN fix, cannot share global space with shared libraries
|
||||
|
@ -456,7 +456,7 @@ bool RsPluginManager::loadList(std::list<RsItem*>& list)
|
|||
}
|
||||
else if((*kit).key == "REFERENCE_EXECUTABLE_HASH")
|
||||
{
|
||||
reference_executable_hash = kit->value ;
|
||||
reference_executable_hash = RsFileHash(kit->value) ;
|
||||
std::cerr << " Reference executable hash: " << kit->value << std::endl;
|
||||
}
|
||||
else if((*kit).key == "ACCEPTED")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue