summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm.pm1
-rw-r--r--urpm/download.pm2
2 files changed, 1 insertions, 2 deletions
diff --git a/urpm.pm b/urpm.pm
index aaa091e2..032bc494 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -2798,7 +2798,6 @@ sub download_packages_of_distant_media {
{
dir => "$urpm->{cachedir}/partial",
quiet => 0,
- verbose => $options{verbose},
limit_rate => $options{limit_rate},
resume => $options{resume},
compress => $options{compress},
diff --git a/urpm/download.pm b/urpm/download.pm
index 6b5c2980..d18f0395 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -344,7 +344,7 @@ sub sync_curl {
($options->{resume} ? ("--continue-at", "-") : ()),
($options->{proxy} ? set_proxy({ type => "curl", proxy => $options->{proxy} }) : ()),
($options->{retry} ? ('--retry', $options->{retry}) : ()),
- ($options->{quiet} && !$options->{verbose} ? "-s" : @{[]}),
+ ($options->{quiet} ? "-s" : @{[]}),
"-k",
$location_trusted ? "--location-trusted" : @{[]},
"-R",