diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/mms.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/mms.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/mms.pm b/Master/tlpkg/tlperl/lib/URI/mms.pm index 2f1015b61d9..3c74a39bb8c 100644 --- a/Master/tlpkg/tlperl/lib/URI/mms.pm +++ b/Master/tlpkg/tlperl/lib/URI/mms.pm @@ -1,7 +1,9 @@ package URI::mms; -require URI::http; -@ISA=qw(URI::http); +use strict; +use warnings; + +use parent 'URI::http'; sub default_port { 1755 } |