[pacman-dev] [PATCH] lib/sync: use full delta size as max download size

Dave Reisner d at falconindy.com
Sun Feb 12 12:18:52 EST 2012


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 <dreisner at archlinux.org>
---
 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



More information about the pacman-dev mailing list