]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix typo in rev.14073
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 14 May 2015 23:56:40 +0000 (16:56 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 14 May 2015 23:56:40 +0000 (16:56 -0700)
src/ssl/PeerConnector.cc

index aa2cf968a33059e0cde0f467da94e9962bcc5b64..993f23ab8806d79e44e4e1328d8270f6e48fc94d 100644 (file)
@@ -36,8 +36,8 @@ CBDATA_NAMESPACED_CLASS_INIT(Ssl, PeekingPeerConnector);
 
 Ssl::PeerConnector::PeerConnector(const Comm::ConnectionPointer &aServerConn, AsyncCall::Pointer &aCallback, const time_t timeout) :
     AsyncJob("Ssl::PeerConnector"),
-    certErrors(NULL),
     serverConn(aServerConn),
+    certErrors(NULL),
     callback(aCallback),
     negotiationTimeout(timeout),
     startTime(squid_curtime),