Index: net/socket/ssl_server_socket_nss.cc |
diff --git a/net/socket/ssl_server_socket_nss.cc b/net/socket/ssl_server_socket_nss.cc |
index 4483c9111345b938667ec3b77194b7a4044ac230..c48c04cb0bc713ee5f7ca02577fa83f92df1344a 100644 |
--- a/net/socket/ssl_server_socket_nss.cc |
+++ b/net/socket/ssl_server_socket_nss.cc |
@@ -357,8 +357,7 @@ int SSLServerSocketNSS::InitializeSSLOptions() { |
const PRUint16* const ssl_ciphers = SSL_GetImplementedCiphers(); |
const PRUint16 num_ciphers = SSL_GetNumImplementedCiphers(); |
- // Require forward security by iterating over the cipher suites and |
- // disabling all those that don't use ECDHE. |
+ // Iterate over the cipher suites and disable those that don't use ECDHE. |
for (unsigned i = 0; i < num_ciphers; i++) { |
SSLCipherSuiteInfo info; |
if (SSL_GetCipherSuiteInfo(ssl_ciphers[i], &info, sizeof(info)) == |