diff options
-rw-r--r-- | perl-install/ftp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ftp.pm b/perl-install/ftp.pm index ffdd25aa3..36b99b560 100644 --- a/perl-install/ftp.pm +++ b/perl-install/ftp.pm @@ -30,7 +30,7 @@ sub new { my @l = do { if ($hosts{"$host$prefix"}) { @{$hosts{"$host$prefix"}}; } else { - my %options = (Passive => 1, Timeout => 60); + my %options = (Passive => 1, Timeout => 60, Port => 21); $options{Firewall} = $ENV{PROXY} if $ENV{PROXY}; $options{Port} = $ENV{PROXYPORT} if $ENV{PROXYPORT}; unless ($login) { |