| Index: net/quic/quic_client_session.cc
|
| diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
|
| index 39c2e719e7baa4e449a9ac691f63f098ede464fa..fce3bf79465914477bfaea7a19c256bdd557888c 100644
|
| --- a/net/quic/quic_client_session.cc
|
| +++ b/net/quic/quic_client_session.cc
|
| @@ -489,10 +489,9 @@ bool QuicClientSession::CanPool(const std::string& hostname) const {
|
| }
|
|
|
| bool unused = false;
|
| - // Pooling is prohibited for connections on which client certs were
|
| - // sent. It is also prohibited for when channel ID was sent if the
|
| - // hosts are from different eTLDs. And of course, it is prohibited
|
| - // if the server cert is not valid for the new domain.
|
| + // Pooling is prohibited if the server cert is not valid for the new domain,
|
| + // and for connections on which client certs were sent. It is also prohibited
|
| + // when channel ID was sent if the hosts are from different eTLDs+1.
|
| if (!ssl_info.cert->VerifyNameMatch(hostname, &unused))
|
| return false;
|
|
|
|
|