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/util | |
| 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/util')
| -rw-r--r-- | src/util/testdb.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/testdb.c b/src/util/testdb.c index 839a9cf7..bda67d52 100644 --- a/src/util/testdb.c +++ b/src/util/testdb.c @@ -98,7 +98,7 @@ static int checkdeps(alpm_list_t *pkglist)  	alpm_list_t *data, *i;  	int ret = 0;  	/* check dependencies */ -	data = alpm_checkdeps(pkglist, 0, NULL, pkglist); +	data = alpm_checkdeps(handle, pkglist, NULL, pkglist, 0);  	for(i = data; i; i = alpm_list_next(i)) {  		pmdepmissing_t *miss = alpm_list_getdata(i);  		pmdepend_t *dep = alpm_miss_get_dep(miss);  | 
