diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-07 20:46:11 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-14 02:35:22 +0200 |
commit | d76341297a089864cf9bb509873bdcff83755f6c (patch) | |
tree | 30f154fb6e6d24357f7902ab5c2e7622c66173ae /lib/libalpm/sync.c | |
parent | fb3ad7f8823dd3300528b44427d40e17594b1400 (diff) | |
download | pacman-d76341297a089864cf9bb509873bdcff83755f6c.tar.gz pacman-d76341297a089864cf9bb509873bdcff83755f6c.tar.xz |
Require handle for alpm_pkg_load()
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r-- | 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 16be6d9a..18828881 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -876,7 +876,7 @@ int _alpm_sync_commit(pmhandle_t *handle, alpm_list_t **data) /* load the package file and replace pkgcache entry with it in the target list */ /* TODO: alpm_pkg_get_db() will not work on this target anymore */ _alpm_log(PM_LOG_DEBUG, "replacing pkgcache entry with package file for target %s\n", spkg->name); - pmpkg_t *pkgfile =_alpm_pkg_load_internal(filepath, 1, spkg->md5sum, + pmpkg_t *pkgfile =_alpm_pkg_load_internal(handle, filepath, 1, spkg->md5sum, spkg->base64_sig, check_sig); if(!pkgfile) { errors++; |