diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-07 14:05:42 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-13 19:35:22 -0500 |
commit | 8b62d9bc0ade64897990b8fc6a1b6a54b629cb5b (patch) | |
tree | 9f8239d9a953552aa0045e5206bd3bb2f8bba09e /src/pacman | |
parent | 70a86c14f4462ba59a9d6bbd3c9e9f0c75483777 (diff) |
Add handle argument to two more alpm methods
This takes care of alpm_checkdeps() and alpm_find_dbs_satisfier().
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman')
-rw-r--r-- | src/pacman/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index be6f147f..77f6c45b 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -685,7 +685,7 @@ cleanup: static int process_targname(alpm_list_t *dblist, char *targname) { - pmpkg_t *pkg = alpm_find_dbs_satisfier(dblist, targname); + pmpkg_t *pkg = alpm_find_dbs_satisfier(config->handle, dblist, targname); /* #FS23342 - skip ignored packages when user says no */ if(pm_errno == PM_ERR_PKG_IGNORED) { |