| Index: net/quic/crypto/quic_crypto_client_config.cc
|
| diff --git a/net/quic/crypto/quic_crypto_client_config.cc b/net/quic/crypto/quic_crypto_client_config.cc
|
| index a95c0f08e2b5309822873c4f487b399662e1acd6..917b8db255e915c057e2453410beed6cc09bf8ec 100644
|
| --- a/net/quic/crypto/quic_crypto_client_config.cc
|
| +++ b/net/quic/crypto/quic_crypto_client_config.cc
|
| @@ -881,7 +881,8 @@ bool QuicCryptoClientConfig::PopulateFromCanonicalConfig(
|
| DCHECK(server_state->IsEmpty());
|
| size_t i = 0;
|
| for (; i < canonical_suffixes_.size(); ++i) {
|
| - if (EndsWith(server_id.host(), canonical_suffixes_[i], false)) {
|
| + if (base::EndsWith(server_id.host(), canonical_suffixes_[i],
|
| + base::CompareCase::INSENSITIVE_ASCII)) {
|
| break;
|
| }
|
| }
|
|
|