index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-10-24 09:22:53 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-10-31 16:20:03 +1000 |
commit | 1c5b94e6bbcf2e8e1c8bb2711465b98a894a9652 (patch) | |
tree | e0ef2070a9efc18876a98e874724294bbf937e92 /src | |
parent | b82a0d83ce3aede3cd82885439996359fa7e7e7b (diff) |
-rw-r--r-- | src/pacman/callback.c | 2 |
diff --git a/src/pacman/callback.c b/src/pacman/callback.c index d0b7c409..36531a26 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -632,7 +632,7 @@ void cb_dl_progress(const char *filename, off_t file_xfered, off_t file_total) } /* bogus values : stop here */ - if(xfered > total) { + if(xfered > total || xfered < 0) { return; } |