fix a compilation bug

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2033 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2010-01-14 00:37:38 +00:00
parent 810481c8b7
commit 79ead807a2

View File

@ -641,10 +641,10 @@ bool p3Peers::removeFriend(std::string ssl_or_gpgid)
std::cerr << std::endl;
#endif
//will remove if it's a gpg id
AuthGPG::getAuthGPG()->setAcceptToConnectGPGCertificate(id, false);
AuthGPG::getAuthGPG()->setAcceptToConnectGPGCertificate(ssl_or_gpgid, false);
//will remove if it's a ssl id
mConnMgr->removeFriend(id);
mConnMgr->removeFriend(ssl_or_gpgid);
return true;
}