summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/dload.c
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-08-17 02:10:22 +0200
committerDan McGee <dan@archlinux.org>2011-08-17 02:37:14 +0200
commitb008193c1255639f724e3f6c62e50e6f2619e3c2 (patch)
treeb1bb514b26ae10fc9389909183741cba3be13af3 /lib/libalpm/dload.c
parentcea6d7eb13e548cd148e42faebd81f6f219b0fb0 (diff)
downloadpacman-b008193c1255639f724e3f6c62e50e6f2619e3c2.tar.gz
pacman-b008193c1255639f724e3f6c62e50e6f2619e3c2.tar.xz
dload: zero out pm_errno in curl_download_internal
This reverts some hacky behavior from 5fc3ec and resets the handle's pm_errno where it should be reset -- prior to each download. This prevents a transaction with a download from being aborted when a package is successfully grabbed from a secondary server. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/dload.c')
-rw-r--r--lib/libalpm/dload.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index 5a63e488..9f1285d0 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -194,6 +194,7 @@ static int curl_download_internal(struct dload_payload *payload,
struct sigaction sig_pipe[2], sig_int[2];
/* shortcut to our handle within the payload */
alpm_handle_t *handle = payload->handle;
+ handle->pm_errno = 0;
if(!payload->filename) {
payload->filename = get_filename(payload->fileurl);