summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
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 855ae096..38ee23ed 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -335,10 +335,10 @@ sub sync_curl {
}
#- http files (and other files) are correctly managed by curl wrt conditional download.
#- options for ftp files, -R (-O <file>)*
- #- options for http files, -R (-z file -O <file>)*
+ #- options for http files, -R (-O <file>)*
if (my @all_files = (
(map { ("-O", $_) } @ftp_files),
- (map { m|/([^/]*)$| ? ("-z", $1, "-O", $_) : @{[]} } @other_files)))
+ (map { m|/| ? ("-O", $_) : @{[]} } @other_files)))
{
my @l = (@ftp_files, @other_files);
my ($buf, $file); $buf = '';