| 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 d25d2f19b8652822d57d0de4deace5fba3644c75..eed8cf10e8503af2f40c3376552135e365b8dad1 100644
|
| --- a/net/quic/crypto/quic_crypto_client_config.cc
|
| +++ b/net/quic/crypto/quic_crypto_client_config.cc
|
| @@ -601,7 +601,7 @@ QuicErrorCode QuicCryptoClientConfig::ProcessRejection(
|
| }
|
| HandshakeFailureReason reason =
|
| static_cast<HandshakeFailureReason>(reject_reasons[i]);
|
| - packed_error |= 1 << reason;
|
| + packed_error |= 1 << (reason - 1);
|
| }
|
| DVLOG(1) << "Reasons for rejection: " << packed_error;
|
| #endif
|
|
|