From 739533335c9c0bc2703b2d8ec3b5cd9ea9cf0e1e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 5 Jun 2000 11:09:58 +0000 Subject: *** empty log message *** --- perl-install/crypto.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/perl-install/crypto.pm b/perl-install/crypto.pm index a679597bc..7f96874ee 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -30,12 +30,13 @@ sub require2package { $deps{$_[0]} || $_[0] } sub mirror2text($) { $mirrors{$_[0]} && "$mirrors{$_[0]}[0] ($_[0])" } sub mirrorstext() { map { mirror2text($_) } keys %mirrors } sub text2mirror($) { first($_[0] =~ /\((.*)\)$/) } -sub ftp($) { ftp::new($_[0], "$mirrors{$_[0]}[1]/$::VERSION") } +sub dir { $mirrors{$_[0]}[1] . '/' . (arch() !~ /i386/ && arch() . '/') . $::VERSION } +sub ftp($) { ftp::new($_[0], dir($_[0])) } sub getFile($$) { my ($file, $host) = @_; - log::l("getting crypto file $file on directory $host:$mirrors{$host}[1]/$::VERSION with login $mirrors{$host}[2]"); - my ($ftp, $retr) = ftp::new($_[1], "$mirrors{$host}[1]/$::VERSION", + log::l("getting crypto file $file on directory " . dir($host) . " with login $mirrors{$host}[2]"); + my ($ftp, $retr) = ftp::new($host, dir($host), $mirrors{$host}[2] ? $mirrors{$host}[2] : (), $mirrors{$host}[3] ? $mirrors{$host}[3] : () ); -- cgit v1.2.1