diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/ftp.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/ftp.pm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/ftp.pm b/Master/tlpkg/tlperl/lib/URI/ftp.pm index 89aeb07cdc9..7a3c8ca79e2 100644 --- a/Master/tlpkg/tlperl/lib/URI/ftp.pm +++ b/Master/tlpkg/tlperl/lib/URI/ftp.pm @@ -1,10 +1,9 @@ package URI::ftp; -require URI::_server; -require URI::_userpass; -@ISA=qw(URI::_server URI::_userpass); - use strict; +use warnings; + +use parent qw(URI::_server URI::_userpass); sub default_port { 21 } |