fixed bug caused by shadowing a variable

This commit is contained in:
csoler 2019-09-22 16:34:01 +02:00
parent 6919711f48
commit 9c7edffc21
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -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
{