Fix a bug when adding a cert

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2731 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2010-04-19 11:58:34 +00:00
parent a5bc5d7aa2
commit 768b9288b5
2 changed files with 11 additions and 4 deletions

View File

@ -1230,7 +1230,7 @@ bool AuthGPG::LoadCertificateFromString(std::string str, std::string &gpg_id)
if(res == NULL || res->imports == NULL)
return false ;
std::string fingerprint = std::string(res->imports->fpr);
fingerprint = std::string(res->imports->fpr);
#ifdef GPG_DEBUG
std::cerr << "AuthGPG::LoadCertificateFromString() Importing considered folowing fpr : " << fingerprint << std::endl;
#endif
@ -1264,8 +1264,11 @@ bool AuthGPG::LoadCertificateFromString(std::string str, std::string &gpg_id)
#ifdef GPG_DEBUG
std::cerr << "AuthGPG::LoadCertificateFromString() returning with gpg_id : " << gpg_id << std::endl;
#endif
return true;
if (gpg_id == "") {
return false;
} else {
return true;
}
}
/*****************************************************************

View File

@ -981,7 +981,11 @@ bool p3Peers::loadDetailsFromStringCert(std::string certstr, RsPeerDetails &pd)
std::cerr << "ConnectFriendWizard : Parse ip address error." << std::endl;
}
return true;
if (pd.gpg_id == "") {
return false;
} else {
return true;
}
}