From: Source Maintenance Date: Tue, 30 Dec 2014 18:12:05 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: merge-candidate-3-v1~400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05ac880f0c1077359ae4cf05c135299256b7468e;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/ssl/PeerConnector.cc b/src/ssl/PeerConnector.cc index 1308b0bd06..32e19c1780 100644 --- a/src/ssl/PeerConnector.cc +++ b/src/ssl/PeerConnector.cc @@ -547,8 +547,8 @@ Ssl::PeerConnector::handleNegotiateError(const int ret) // unsupported server Hello message (TODO: make configurable). #if 1 if (!SSL_get_ex_data(ssl, ssl_ex_index_ssl_error_detail) && - SSL_get_peer_certificate(ssl) && - (request->clientConnectionManager->sslBumpMode == Ssl::bumpPeek || request->clientConnectionManager->sslBumpMode == Ssl::bumpStare) && srvBio->holdWrite()) { + SSL_get_peer_certificate(ssl) && + (request->clientConnectionManager->sslBumpMode == Ssl::bumpPeek || request->clientConnectionManager->sslBumpMode == Ssl::bumpStare) && srvBio->holdWrite()) { debugs(81, 3, "Error (" << ERR_error_string(ssl_lib_error, NULL) << ") but, hold write on SSL connection on FD " << fd); checkForPeekAndSplice(); return;