| Index: net/socket/ssl_client_socket_win.cc
 | 
| ===================================================================
 | 
| --- net/socket/ssl_client_socket_win.cc	(revision 65819)
 | 
| +++ net/socket/ssl_client_socket_win.cc	(working copy)
 | 
| @@ -382,6 +382,7 @@
 | 
|          write_callback_(this, &SSLClientSocketWin::OnWriteComplete)),
 | 
|        transport_(transport_socket),
 | 
|        hostname_(hostname),
 | 
| +      port_(port),
 | 
|        ssl_config_(ssl_config),
 | 
|        user_connect_callback_(NULL),
 | 
|        user_read_callback_(NULL),
 | 
| @@ -453,7 +454,7 @@
 | 
|  
 | 
|  void SSLClientSocketWin::GetSSLCertRequestInfo(
 | 
|      SSLCertRequestInfo* cert_request_info) {
 | 
| -  cert_request_info->host_and_port = hostname_;  // TODO(wtc): no port!
 | 
| +  cert_request_info->host_and_port = HostPortPair(hostname_, port_).ToString();
 | 
|    cert_request_info->client_certs.clear();
 | 
|  
 | 
|    // Get the certificate_authorities field of the CertificateRequest message.
 | 
| 
 |