| Index: net/quic/core/quic_protocol.cc
|
| diff --git a/net/quic/core/quic_protocol.cc b/net/quic/core/quic_protocol.cc
|
| index 12215118ec3df70fb84caa1e0e671a3cc9faa8be..4053dc09926905c02577153280afefefdcba2f76 100644
|
| --- a/net/quic/core/quic_protocol.cc
|
| +++ b/net/quic/core/quic_protocol.cc
|
| @@ -311,7 +311,8 @@ ostream& operator<<(ostream& os, const QuicPacketHeader& header) {
|
| }
|
| if (header.public_header.nonce != nullptr) {
|
| os << ", diversification_nonce: "
|
| - << net::QuicUtils::HexDecode(*header.public_header.nonce);
|
| + << QuicUtils::HexEncode(StringPiece(header.public_header.nonce->data(),
|
| + header.public_header.nonce->size()));
|
| }
|
| os << ", fec_flag: " << header.fec_flag
|
| << ", entropy_flag: " << header.entropy_flag
|
|
|