diff options
author | Yang Tse <yangsita@gmail.com> | 2006-11-19 03:47:11 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-11-19 03:47:11 +0000 |
commit | e6978117a743f804ab57247d393324675c4d1988 (patch) | |
tree | a4397946d6be523ac60e93bc956b06dc1e9f18d1 /tests/ftp.pm | |
parent | 5dcb055077f5f9a166aca9f596b8fd815d150c2f (diff) | |
download | curl-e6978117a743f804ab57247d393324675c4d1988.tar.gz |
Comment out the use of the "warnings" module now that ftp.pm seems to
be clear of warnings. Uncomment it if this module is further modified.
The "warnings" module requires perl 5.006 or later. Previous perl
versions don't have it and die on missing modules.
Diffstat (limited to 'tests/ftp.pm')
-rw-r--r-- | tests/ftp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftp.pm b/tests/ftp.pm index 663744545..175257f04 100644 --- a/tests/ftp.pm +++ b/tests/ftp.pm @@ -22,7 +22,7 @@ ########################################################################### use strict; -use warnings; +#use warnings; # requires perl 5.006 or later my $DEFAULT_TIMEOUT_START = 90; # default allowed time for a process to startup |