diff options
author | Dan McGee <dan@archlinux.org> | 2011-10-21 18:19:45 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-10-22 02:29:31 +0200 |
commit | 0b155677cf127a2cd765f05125df727bb659b597 (patch) | |
tree | 6d073ebacd6e47d8adb663cc9bbb7ef06f66e7d7 /lib/libalpm/dload.h | |
parent | 6f2faf16bac6976423124b77b0b134ebcfae6822 (diff) | |
download | pacman-0b155677cf127a2cd765f05125df727bb659b597.tar.gz pacman-0b155677cf127a2cd765f05125df727bb659b597.tar.xz |
sync: extract build_payload() method from find_dl_candidates
This is done by both the delta and regular file code, so we can extract
a little helper method. Done mostly to satisfy my "why are we repeating
code here" itch.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/dload.h')
-rw-r--r-- | lib/libalpm/dload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/dload.h b/lib/libalpm/dload.h index 158e0b77..9ab90b42 100644 --- a/lib/libalpm/dload.h +++ b/lib/libalpm/dload.h @@ -38,7 +38,7 @@ struct dload_payload { int allow_resume; int errors_ok; int unlink_on_fail; - const alpm_list_t *servers; + alpm_list_t *servers; #ifdef HAVE_LIBCURL CURLcode curlerr; /* last error produced by curl */ #endif |