# HG changeset patch # User Sergey Kandaurov # Date 1440421925 -10800 # Node ID b0342dbd9390326e5dc68bed85b68318b02a6a57 # Parent f3b5bee3a14ebba38c4da74984768af4923fe14d Tests: HTTP/2 tests minor cleanup. Use an appropriate pack specifier for collecting GOAWAY debug field data. diff --git a/h2.t b/h2.t --- a/h2.t +++ b/h2.t @@ -1680,7 +1680,7 @@ sub goaway { $payload{last_sid} = $stream; $len -= 4; - $payload{debug} = unpack "x4 H$len", $buf; + $payload{debug} = unpack "x4 A$len", $buf; return \%payload; }