Skip Menu |

This queue is for tickets about the Net-FTP-AutoReconnect CPAN distribution.

Report information
The Basics
Id: 20321
Status: resolved
Priority: 0/
Queue: Net-FTP-AutoReconnect

People
Owner: GIFF [...] cpan.org
Requestors: david.harper [...] symbian.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.1
Fixed in: 0.2



Subject: pwd function tries to call auto_reconnect rather than _auto_reconnect
sub pwd { my $self = shift; my @a = @_; - $self->auto_reconnect(sub { $self->{ftp}->pwd(@a) }); + $self->_auto_reconnect(sub { $self->{ftp}->pwd(@a) }); } Simple typo missing _ off of a private function call.
This has been fixed for awhile, I just forgot to close the ticket.