From: Alex Rousskov Date: Sat, 21 May 2016 23:19:36 +0000 (-0600) Subject: Fixed build-breaking typo in r14684. X-Git-Tag: SQUID_4_0_11~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03c428e96dab2bfcacc2484a87cc890ff39041b3;p=thirdparty%2Fsquid.git Fixed build-breaking typo in r14684. --- diff --git a/src/security/PeerOptions.cc b/src/security/PeerOptions.cc index c85cac4bfe..79350c4249 100644 --- a/src/security/PeerOptions.cc +++ b/src/security/PeerOptions.cc @@ -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);