mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-05-28 15:24:49 -05:00
Fix trivial Perl goof in logparse.pl which caused
SSH2_MSG_CHANNEL_FAILURE to be reported as replying to ARRAY(0xrubbish) instead of to a message number. [originally from svn r9472]
This commit is contained in:
parent
4318e3227f
commit
03cc84d3f3
@ -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?)";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user