summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm')
-rw-r--r--Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm b/Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm
index 2a96c1b7c55..37c836be73c 100644
--- a/Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm
+++ b/Master/tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm
@@ -1,10 +1,12 @@
package LWP::Protocol::ftp;
-$LWP::Protocol::ftp::VERSION = '6.25';
+
# Implementation of the ftp protocol (RFC 959). We let the Net::FTP
# package do all the dirty work.
use base qw(LWP::Protocol);
use strict;
+our $VERSION = '6.31';
+
use Carp ();
use HTTP::Status ();
use HTTP::Negotiate ();
@@ -15,9 +17,10 @@ use File::Listing ();
{
- package LWP::Protocol::MyFTP;
-$LWP::Protocol::MyFTP::VERSION = '6.25';
-use strict;
+ package # hide from PAUSE
+ LWP::Protocol::MyFTP;
+
+ use strict;
use base qw(Net::FTP);
sub new {