Subject: | Error (Timeout) in Telnet.pm line 1236 |
Date: | Fri, 04 Dec 2009 16:14:49 -0500 |
To: | bug-Net-Telnet [...] rt.cpan.org |
From: | Benoit Quenneville <info [...] newzi.com> |
Error (Timeout) in Telnet.pm line 1236
1236. elsif (/^-?timeout$/i) {
$timeout = &_parse_timeout($self, $args{$_});
}
Replace by
1236. elsif (/^-?timeout$/i) {
$self->timeout($args{$_});
$timeout = $self->timeout;
}
That cause an error with the setting of the timeout !
Best regards !
Benoit Quenneville