]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Source Format Enforcement
authorSquidAdm <noc@lists.squid-cache.org>
Thu, 1 Apr 2021 01:52:45 +0000 (01:52 +0000)
committerAmos Jeffries <yadij@users.noreply.github.com>
Fri, 2 Apr 2021 23:24:23 +0000 (12:24 +1300)
src/security/PeerConnector.cc

index 63a8b5c812d8b5d93b3466cc5a9534aa4653cb56..58db7b0571c922f9f29af9b8adc613f4cc7fc775 100644 (file)
@@ -207,7 +207,7 @@ Security::PeerConnector::negotiate()
         hidMissingIssuer = false; // prep for the next SSL_connect()
 
         if (result.category == IoResult::ioSuccess ||
-            !(result.errorDetail && result.errorDetail->errorNo() == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY))
+                !(result.errorDetail && result.errorDetail->errorNo() == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY))
             return handleMissingCertificates(result);
 
         debugs(83, DBG_IMPORTANT, "BUG: Honoring unexpected SSL_connect() error: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY");