diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/ssh.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/ssh.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/ssh.pm b/Master/tlpkg/tlperl/lib/URI/ssh.pm index 1d47e4148f6..122cdcb9828 100644 --- a/Master/tlpkg/tlperl/lib/URI/ssh.pm +++ b/Master/tlpkg/tlperl/lib/URI/ssh.pm @@ -1,6 +1,9 @@ package URI::ssh; -require URI::_login; -@ISA=qw(URI::_login); + +use strict; +use warnings; + +use parent 'URI::_login'; # ssh://[USER@]HOST[:PORT]/SRC |