summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/sync.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-25 23:40:39 +0200
committerDan McGee <dan@archlinux.org>2011-08-29 02:52:19 +0200
commitdc3336c27728fc16d2f9e68cb818648e7ca88467 (patch)
treea0d06285caa82e56ea917673868e2080f5f7b1ca /lib/libalpm/sync.c
parentc7e4005e5ced965db49d73067fe40c516b6c34df (diff)
downloadpacman-dc3336c27728fc16d2f9e68cb818648e7ca88467.tar.gz
pacman-dc3336c27728fc16d2f9e68cb818648e7ca88467.tar.xz
Refactor some args out of pkg_load_internal
Just pass the entire sync package in if we have it; that way we can do any necessary operations involving it rather than have a parameter list growing endlessly. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r--lib/libalpm/sync.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index 3b31899a..19038b49 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -938,8 +938,7 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
_alpm_log(handle, ALPM_LOG_DEBUG,
"replacing pkgcache entry with package file for target %s\n",
spkg->name);
- alpm_pkg_t *pkgfile =_alpm_pkg_load_internal(handle, filepath, 1, spkg->md5sum,
- spkg->sha256sum, spkg->base64_sig, level);
+ alpm_pkg_t *pkgfile =_alpm_pkg_load_internal(handle, filepath, spkg, 1, level);
if(!pkgfile) {
prompt_to_delete(trans, filepath, handle->pm_errno);
errors++;