Subject: | Perl.pm Change breaks Net::SSH::W32Perl |
The bug appears in the file c:\Perl\site\lib\Net\SSH\Perl.pm
In order to fix the problem, I modified these lines:
my $proto_class = join '::', __PACKAGE__,
($proto == PROTOCOL_SSH2 ? "SSH2" : "SSH1");
To look like this (what the original code was):
my $proto_class = $ssh->protocol_class($proto);
More details can be found at:
http://www.perlmonks.org/?node_id=758068