aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include/net
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-11-25 19:13:05 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-11-25 19:27:54 +0000
commite896cca86e20ed49abcb4d9cd4a966fd66f28fba (patch)
tree097104c33958a8174ecc0f095f650754257780fa /contrib/epee/include/net
parentMerge pull request #6097 (diff)
downloadmonero-e896cca86e20ed49abcb4d9cd4a966fd66f28fba.tar.xz
epee: reorder a couple init list fields to match declaration
This is a bug waiting to happen
Diffstat (limited to 'contrib/epee/include/net')
-rw-r--r--contrib/epee/include/net/net_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/net_helper.h b/contrib/epee/include/net/net_helper.h
index 81545e502..9446e3588 100644
--- a/contrib/epee/include/net/net_helper.h
+++ b/contrib/epee/include/net/net_helper.h
@@ -103,8 +103,8 @@ namespace net_utils
blocked_mode_client() :
m_io_service(),
m_ctx(boost::asio::ssl::context::tlsv12),
- m_connector(direct_connect{}),
m_ssl_socket(new boost::asio::ssl::stream<boost::asio::ip::tcp::socket>(m_io_service, m_ctx)),
+ m_connector(direct_connect{}),
m_ssl_options(epee::net_utils::ssl_support_t::e_ssl_support_autodetect),
m_initialized(true),
m_connected(false),