The max filesize for a delta download must be the full size of the delta
file, not just what's remaining.

Fixes FS#28345

Signed-off-by: Dave Reisner <[email protected]>
---
 lib/libalpm/sync.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index 9478829..468438f 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -838,7 +838,7 @@ static int find_dl_candidates(alpm_db_t *repo, alpm_list_t 
**files, alpm_list_t
                                        alpm_delta_t *delta = dlts->data;
                                        if(delta->download_size != 0) {
                                                struct dload_payload *payload = 
build_payload(
-                                                               handle, 
delta->delta, delta->download_size, repo->servers);
+                                                               handle, 
delta->delta, delta->delta_size, repo->servers);
                                                ASSERT(payload, return -1);
                                                *files = alpm_list_add(*files, 
payload);
                                        }
-- 
1.7.9


Reply via email to