diff options
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/jingle_glue/ssl_socket_adapter.cc | 2 | ||||
-rw-r--r-- | remoting/protocol/ssl_hmac_channel_authenticator.cc | 2 |
2 files changed, 2 insertions, 2 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))); diff --git a/remoting/protocol/ssl_hmac_channel_authenticator.cc b/remoting/protocol/ssl_hmac_channel_authenticator.cc index 93f3824..9e9a5f4 100644 --- a/remoting/protocol/ssl_hmac_channel_authenticator.cc +++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc @@ -106,7 +106,7 @@ void SslHmacChannelAuthenticator::SecureAndAuthenticate( context.cert_verifier = cert_verifier_.get(); socket_.reset( net::ClientSocketFactory::GetDefaultFactory()->CreateSSLClientSocket( - socket.release(), host_and_port, ssl_config, NULL, context)); + socket.release(), host_and_port, ssl_config, context)); result = socket_->Connect( base::Bind(&SslHmacChannelAuthenticator::OnConnected, |