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.