diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-02 14:00:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-02 14:00:39 +0000 |
commit | fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a (patch) | |
tree | b37e1fa2d7666bcdaac4c3b8f2613b86282dcf78 /perl-install | |
parent | 723df32220af3a6972d7353579633d2faccc5d9a (diff) | |
download | drakx-fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a.tar drakx-fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a.tar.gz drakx-fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a.tar.bz2 drakx-fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a.tar.xz drakx-fb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a.zip |
remove buggy prototype
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/crypto.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/crypto.pm b/perl-install/crypto.pm index 780539cc9..0832d5073 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -32,7 +32,7 @@ sub mirrors() { keys %mirrors } sub dir { $mirrors{$_[0]}[1] . '/' . (arch() !~ /i.86/ && ((arch() =~ /sparc/ ? "sparc" : arch()). '/')) . $::VERSION } sub ftp($) { ftp::new($_[0], dir($_[0])) } -sub getFile($$) { +sub getFile { my ($file, $host) = @_; $host ||= $crypto::host; log::l("getting crypto file $file on directory " . dir($host) . " with login $mirrors{$host}[2]"); |