Use active, not passive FTP.

This commit is contained in:
David Anderson 2011-06-29 16:46:14 -07:00
parent fd9cf5f1fc
commit f2296e1f91

View File

@ -65,7 +65,7 @@ $ftp_path .= "/$major.$minor";
my ($ftp);
$ftp = Net::FTP->new($ftp_host, Debug => 0)
$ftp = Net::FTP->new($ftp_host, Debug => 0, Passive => 0)
or die "Cannot connect to host $ftp_host: $@";
$ftp->login($ftp_user, $ftp_pass)