Skip Menu |

This queue is for tickets about the Net-SSH-Perl CPAN distribution.

Report information
The Basics
Id: 16420
Status: resolved
Priority: 0/
Queue: Net-SSH-Perl

People
Owner: Nobody in particular
Requestors: m [...] perlmeister.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.29
Fixed in: (no value)



Subject: IO::Handle missing in Net::SSH::Perl 1.29
With Net::SSH::Perl 1.29, I get Can't locate object method "blocking" via package "IO::Handle" (perhaps you forgot to load "IO::Handle"?) at /home/y/lib/perl5/site_perl/5.6.1/Net/SSH/Perl.pm line 212, <GEN0> line 1. Patch attached.
--- lib/Net/SSH/Perl.pm Mon Oct 3 22:12:04 2005 +++ lib/Net/SSH/Perl.pm Sat Dec 10 11:31:48 2005 @@ -13,6 +13,7 @@ use vars qw( $VERSION $CONFIG $HOSTNAME ); $CONFIG = {}; +use IO::Handle; use Socket; use Fcntl; use Symbol;