Subject: | bogus error in Net::SSH::Perl::Agent's num_identities |
on line 80 of Agent.pm
croak "Bad auth reply message type: $type1 != $type2";
should really be
croak "Bad auth reply message type: $type != $type2";
$type1 is the value used in the request, $type is the value from the
reply which just failed a comparison and triggered the croak