diff options
Diffstat (limited to 'remoting/jingle_glue/ssl_socket_adapter.cc')
-rw-r--r-- | remoting/jingle_glue/ssl_socket_adapter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/jingle_glue/ssl_socket_adapter.cc b/remoting/jingle_glue/ssl_socket_adapter.cc index f070c05..33b04d3 100644 --- a/remoting/jingle_glue/ssl_socket_adapter.cc +++ b/remoting/jingle_glue/ssl_socket_adapter.cc @@ -68,7 +68,7 @@ int SSLSocketAdapter::BeginSSL() { ssl_socket_.reset( net::ClientSocketFactory::GetDefaultFactory()->CreateSSLClientSocket( transport_socket_, net::HostPortPair(hostname_, 443), ssl_config, - NULL /* ssl_host_info */, context)); + context)); int result = ssl_socket_->Connect( base::Bind(&SSLSocketAdapter::OnConnected, base::Unretained(this))); |