From 243362da62f33325bca5cb4c946f1a8dcc233510 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 29 Jun 2011 15:07:21 -0700 Subject: [PATCH] Use passive, not active FTP. --- support/buildbot/package.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/buildbot/package.pl b/support/buildbot/package.pl index 15d24e6..b21be5c 100755 --- a/support/buildbot/package.pl +++ b/support/buildbot/package.pl @@ -75,7 +75,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)