login timeout
Brought to you by:
jkeroes
In sub login, timeout does not works because of
incorrect use of _parse_timeout
Perl v5.005_03
Net::Telnet::Cisco v1.10
Net::Telnet 3.03
$Id: Cisco.pm,v 1.52 2002/06/18 17:17:03 jkeroes Exp $
line 380 :
$timeout = _parse_timeout($args{$_});
fix :
$timeout = $self->_parse_timeout($self,$args{$_});
philippe
Logged In: YES
user_id=1160979
lol! a bug in the fix.
correct fix :
$timeout = _parse_timeout($self,$args{$_});
philippe
Logged In: YES
user_id=1160979
$timeout = $self->_parse_timeout($args{$_});
works better