From 12d240ff09b6afa5accc01216a2627a6af1e21b8 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Mon, 12 Aug 2013 11:25:12 -0500 Subject: [PATCH] fix typo --- websocketpp/transport/iostream/endpoint.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocketpp/transport/iostream/endpoint.hpp b/websocketpp/transport/iostream/endpoint.hpp index de6b71d642..91ea6fcf67 100644 --- a/websocketpp/transport/iostream/endpoint.hpp +++ b/websocketpp/transport/iostream/endpoint.hpp @@ -63,7 +63,7 @@ public: typedef typename transport_con_type::ptr transport_con_ptr; // generate and manage our own io_service - explicit endpoint() : m_output_stream(NULL), is_secure(false) + explicit endpoint() : m_output_stream(NULL), m_is_secure(false) { //std::cout << "transport::iostream::endpoint constructor" << std::endl; }