summaryrefslogtreecommitdiffstats
path: root/perl-install/ftp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/ftp.pm')
-rw-r--r--perl-install/ftp.pm4
1 files changed, 0 insertions, 4 deletions
diff --git a/perl-install/ftp.pm b/perl-install/ftp.pm
index 14ef68bf0..1c560fff7 100644
--- a/perl-install/ftp.pm
+++ b/perl-install/ftp.pm
@@ -27,12 +27,9 @@ sub fromEnv() {
sub new {
my ($host, $prefix, $login, $password) = @_;
- log::l("ftp::new");
my @l = do { if ($hosts{"$host$prefix"}) {
- log::l("ftp::new 1");
@{$hosts{"$host$prefix"}};
} else {
- log::l("ftp::new 2");
my %options = (Passive => 1, Timeout => 60, Port => 21);
$options{Firewall} = $ENV{PROXY} if $ENV{PROXY};
$options{Port} = $ENV{PROXYPORT} if $ENV{PROXYPORT};
@@ -43,7 +40,6 @@ sub new {
my $ftp;
while (1) {
- log::l("ftp::new 3");
$ftp = Net::FTP->new(network::resolv($host), %options) or die;
$ftp && $ftp->login($login, $password) and last;