From 02cf39fa6f57da19936ec5119a49bc135765f578 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 3 Sep 2008 14:57:14 +0000 Subject: don't call sync() anymore --- urpm/download.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'urpm/download.pm') 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 -- cgit v1.2.1