diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-09-03 21:56:31 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-09-04 17:24:26 +0200 |
commit | 9f795dc201e1868e9d8bdb7a561499090df03773 (patch) | |
tree | 6eae9b34dec57840e6f932fa8e4407de8190d32f | |
parent | 7e77c77973d579cf7aae8795b69a946c99b9bd16 (diff) | |
download | urpmi-9f795dc201e1868e9d8bdb7a561499090df03773.tar urpmi-9f795dc201e1868e9d8bdb7a561499090df03773.tar.gz urpmi-9f795dc201e1868e9d8bdb7a561499090df03773.tar.bz2 urpmi-9f795dc201e1868e9d8bdb7a561499090df03773.tar.xz urpmi-9f795dc201e1868e9d8bdb7a561499090df03773.zip |
perl_checker cleanup
-rw-r--r-- | urpm/download.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/download.pm b/urpm/download.pm index 25f43fdb..fd315f99 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -537,7 +537,7 @@ sub _curl_action { } #- this checks that download has actually started if ($_ eq "\n" - && !($speed eq 0 && $percent == 100 && index($eta, '--') >= 0) #- work around bug 13685 + && !($speed == 0 && $percent == 100 && index($eta, '--') >= 0) #- work around bug 13685 ) { propagate_sync_callback($options, 'end', $file); $file = undef; |