summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--urpm/download.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f91f59e5..5b00b08d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- library:
+ o fix parsing download progress with rsync >= 3.10
+
Version 7.27.5 - 13 October 2013, by Colin Guthrie
- use polkit for authorisation (mga#11125)
diff --git a/urpm/download.pm b/urpm/download.pm
index 8284e81a..31a88264 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -586,7 +586,7 @@ sub sync_rsync {
my $buf = '';
my $cmd = join(" ", "/usr/bin/rsync",
($limit_rate ? "--bwlimit=$limit_rate" : @{[]}),
- ($options->{quiet} ? qw(-q) : qw(--progress -v)),
+ ($options->{quiet} ? qw(-q) : qw(--progress -v --no-human-readable)),
($options->{compress} ? qw(-z) : @{[]}),
($options->{ssh} ? qq(-e $options->{ssh}) :
("--timeout=$CONNECT_TIMEOUT",