mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-01 21:56:06 -04:00
fixed bug caused by shadowing a variable
This commit is contained in:
parent
6919711f48
commit
9c7edffc21
1 changed files with 1 additions and 1 deletions
|
@ -1251,7 +1251,7 @@ int AuthSSLimpl::VerifyX509Callback(int /*preverify_ok*/, X509_STORE_CTX* ctx)
|
|||
RsPeerDetails det;
|
||||
|
||||
if(rsPeers->getPeerDetails(sslId,det))
|
||||
bool isSslOnlyFriend = det.skip_pgp_signature_validation;
|
||||
isSslOnlyFriend = det.skip_pgp_signature_validation;
|
||||
|
||||
if(det.skip_pgp_signature_validation && det.gpg_id != pgpId)// in the future, we should compare fingerprints instead
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue