about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>2007-02-08 03:11:57 +0000
committerGraham Barr <gbarr@pobox.com>2009-02-24 10:40:47 -0600
commit83f49f87c8eb4edb0e11f1f82c98c29c2ab0906d (patch)
treee2f155d5cd2685e2e198de520402f6c2831f9947
parent0be1e12e7bfcfccf67bcb4c7d657bf3313f84c73 (diff)
downloadperl-libnet-83f49f87c8eb4edb0e11f1f82c98c29c2ab0906d.tar.gz
Change passive to be default
-rw-r--r--Net/Config.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Net/Config.pm b/Net/Config.pm
index a502abe..c8ef5c6 100644
--- a/Net/Config.pm
+++ b/Net/Config.pm
@@ -13,7 +13,7 @@ use strict;
 
 @EXPORT  = qw(%NetConfig);
 @ISA     = qw(Net::LocalCfg Exporter);
-$VERSION = "1.10"; # $Id: //depot/libnet/Net/Config.pm#17 $
+$VERSION = "1.11";
 
 eval { local $SIG{__DIE__}; require Net::LocalCfg };
 
@@ -27,8 +27,8 @@ eval { local $SIG{__DIE__}; require Net::LocalCfg };
     time_hosts => [],
     inet_domain => undef,
     ftp_firewall => undef,
-    ftp_ext_passive => 0,
-    ftp_int_passive => 0,
+    ftp_ext_passive => 1,
+    ftp_int_passive => 1,
     test_hosts => 1,
     test_exist => 1,
 );