summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/download.pm')
-rw-r--r--urpm/download.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index d3fa62ea..c703cf39 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -226,7 +226,7 @@ sub sync_wget {
'-P', $options->{dir},
@_
) . " |";
- my $wget_pid = open my $wget, $wget_command;
+ my $wget_pid = open my($wget), $wget_command;
local $/ = \1; #- read input by only one char, this is slow but very nice (and it works!).
while (<$wget>) {
$buf .= $_;