]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed build-breaking typo in r14684.
authorAlex Rousskov <rousskov@measurement-factory.com>
Sat, 21 May 2016 23:19:36 +0000 (17:19 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Sat, 21 May 2016 23:19:36 +0000 (17:19 -0600)
src/security/PeerOptions.cc

index c85cac4bfe4e9839d2a2b85bdced087f0c1576dd..79350c424992c2d019a0fdb98af1372080c71a6b 100644 (file)
@@ -578,7 +578,7 @@ loadSystemTrustedCa(Security::ContextPtr &ctx)
 {
 #if USE_OPENSSL
     if (SSL_CTX_set_default_verify_paths(ctx) == 0)
-        return ERR_error_string(ERR_get_error(), nullptr));
+        return ERR_error_string(ERR_get_error(), nullptr);
 
 #elif USE_GNUTLS
     auto x = gnutls_certificate_set_x509_system_trust(ctx);