From d414149f74ec796bdcf68dacbe5b6491b14c2b3e Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 16 Oct 2014 14:21:33 +0200 Subject: [PATCH] Fix compiler warning refs #7244 --- lib/base/tlsstream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/tlsstream.cpp b/lib/base/tlsstream.cpp index a050f7fa5..2cb420787 100644 --- a/lib/base/tlsstream.cpp +++ b/lib/base/tlsstream.cpp @@ -36,7 +36,7 @@ bool I2_EXPORT TlsStream::m_SSLIndexInitialized = false; * @param sslContext The SSL context for the client. */ TlsStream::TlsStream(const Socket::Ptr& socket, ConnectionRole role, const shared_ptr& sslContext) - : m_Eof(false), m_Socket(socket), m_Role(role), m_VerifyOK(true) + : m_Eof(false), m_VerifyOK(true), m_Socket(socket), m_Role(role) { std::ostringstream msgbuf; char errbuf[120]; -- 2.40.0