X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/beb62006cd8c472668337226f902aa6b8554bad3..34826e4ae9c6255d70c702704f5f6c3874b1e3ff:/contrib/logparse.pl diff --git a/contrib/logparse.pl b/contrib/logparse.pl index 4d936120..a3d82840 100755 --- a/contrib/logparse.pl +++ b/contrib/logparse.pl @@ -414,7 +414,7 @@ my %packets = ( my $otherdir = ($direction eq "i" ? "o" : "i"); my $request = shift @{$chan->{'requests_' . $otherdir}}; if (defined $request) { - printf " to %s", $request; + printf " to %s", $request->[0]; } else { print " (spurious?)"; } @@ -490,7 +490,8 @@ if ($dumpchannels) { 'halfclosed'=>2, 'open'=>3, 'halfopen'=>4); for my $index (0..$#channels) { my $chan = $channels[$index]; - my $so = $stateorder{$chan->{'state'}} or 1000; # unknown sorts highest + my $so = $stateorder{$chan->{'state'}}; + $so = 1000 unless defined $so; # any state I've missed above comes last $chan->{'index'} = sprintf "ch%d", $index; $chan->{'order'} = sprintf "%08d %08d", $so, $index; }