summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm/download.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index 829e3b2c..39d63a02 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -921,9 +921,9 @@ sub sync {
}
sub get_content {
- my ($urpm, $url) = @_;
+ my ($urpm, $url, %o_options) = @_;
- my $file = sync_url($urpm, $url, quiet => 1, preclean => 1) or return;
+ my $file = sync_url($urpm, $url, %o_options, quiet => 1, preclean => 1) or return;
my @l = cat_($file);
unlink $file;