clean the cert only when manually inserted

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2092 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2010-01-19 22:06:42 +00:00
parent 045a70ab10
commit fcb92631fb
2 changed files with 5 additions and 2 deletions

View file

@ -1202,7 +1202,8 @@ bool AuthGPG::LoadCertificateFromString(std::string str, std::string &gpg_id)
RsStackMutex stack(pgpMtx); /******* LOCKED ******/
std::string cleancert = cleanUpCertificate(str);
//std::string cleancert = cleanUpCertificate(str); disable for p3disc message on windows system. Move the clean cert in p3peers
std::string cleancert = str;
std::cerr << "AuthGPG::LoadCertificateFromString() cleancert : " << cleancert;