| Index: net/tools/quic/quic_packet_printer_bin.cc
|
| diff --git a/net/tools/quic/quic_packet_printer_bin.cc b/net/tools/quic/quic_packet_printer_bin.cc
|
| index f4c28a79f7a5e8512357c12d485985f9c7bfe598..f77c3815411b5f2036b6ef9c78816f4b5e3f0b26 100644
|
| --- a/net/tools/quic/quic_packet_printer_bin.cc
|
| +++ b/net/tools/quic/quic_packet_printer_bin.cc
|
| @@ -105,7 +105,7 @@ class QuicPacketPrinter : public QuicFramerVisitorInterface {
|
| bool OnStreamFrame(const QuicStreamFrame& frame) override {
|
| cerr << "OnStreamFrame: " << frame;
|
| cerr << " data: { "
|
| - << QuicUtils::HexEncode(frame.frame_buffer, frame.frame_length)
|
| + << QuicUtils::HexEncode(frame.data_buffer, frame.data_length)
|
| << " }\n";
|
| return true;
|
| }
|
|
|