| Index: net/socket/ssl_client_socket_nss.cc
|
| diff --git a/net/socket/ssl_client_socket_nss.cc b/net/socket/ssl_client_socket_nss.cc
|
| index 904a77695609012a304f1af0f0e1b7d79ed23158..8fad0a021d91b1b554018f74ddbe78d99626f2c3 100644
|
| --- a/net/socket/ssl_client_socket_nss.cc
|
| +++ b/net/socket/ssl_client_socket_nss.cc
|
| @@ -2780,7 +2780,7 @@ int SSLClientSocketNSS::InitializeSSLOptions() {
|
| SSL_CipherPrefSet(nss_fd_, *it, PR_FALSE);
|
| }
|
|
|
| - if (!ssl_config_.enable_deprecated_cipher_suites) {
|
| + if (!ssl_config_.rc4_enabled) {
|
| const PRUint16* const ssl_ciphers = SSL_GetImplementedCiphers();
|
| const PRUint16 num_ciphers = SSL_GetNumImplementedCiphers();
|
| for (int i = 0; i < num_ciphers; i++) {
|
| @@ -2906,7 +2906,7 @@ int SSLClientSocketNSS::InitializeSSLPeerName() {
|
| NOTREACHED();
|
| }
|
| peer_id += "/";
|
| - if (ssl_config_.enable_deprecated_cipher_suites)
|
| + if (ssl_config_.deprecated_cipher_suites_enabled)
|
| peer_id += "deprecated";
|
|
|
| peer_id += "/";
|
|
|