summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-09-03 14:57:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-09-03 14:57:14 +0000
commit02cf39fa6f57da19936ec5119a49bc135765f578 (patch)
tree981eb3f6ec39e9d5dedb4d05c05fc2033b1ac35d /urpm/download.pm
parent33a29dbe9e890887a7aaaea5ee9b892c6a6b6402 (diff)
downloadurpmi-02cf39fa6f57da19936ec5119a49bc135765f578.tar
urpmi-02cf39fa6f57da19936ec5119a49bc135765f578.tar.gz
urpmi-02cf39fa6f57da19936ec5119a49bc135765f578.tar.bz2
urpmi-02cf39fa6f57da19936ec5119a49bc135765f578.tar.xz
urpmi-02cf39fa6f57da19936ec5119a49bc135765f578.zip
don't call sync() anymore
Diffstat (limited to 'urpm/download.pm')
-rw-r--r--urpm/download.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index 9c292b23..b063f35f 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -783,13 +783,13 @@ sub sync_rel {
my ($urpm, $medium, $rel_files, %options) = @_;
my @files = map { reduce_pathname("$medium->{url}/$_") } @$rel_files;
- sync($urpm, $medium, \@files, %options);
+ _sync_raw($urpm, $medium, \@files, %options);
}
sub sync_url {
my ($urpm, $url, %options) = @_;
- sync($urpm, undef, [$url], %options);
+ _sync_raw($urpm, undef, [$url], %options);
}
#- deprecated, use sync_url() or sync_rel() instead