diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2008-08-17 19:30:36 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-08-26 01:08:52 +0200 |
commit | 070135626023caa0186a77f9f846c078e3cf1be8 (patch) | |
tree | 94b481f19572ad3d1812fee8cd331c84ccfa0f0e /lib/libalpm/conflict.c | |
parent | 9dbe5c9d1ee5fb00f25515dfb5a2feb3ae6ebd59 (diff) | |
download | pacman-070135626023caa0186a77f9f846c078e3cf1be8.tar.gz pacman-070135626023caa0186a77f9f846c078e3cf1be8.tar.xz |
Change checkdeps and checkdbconflicts to be more flexible.
These two functions now take directly a package list rather than a database.
checkdbconflicts was renamed to checkconflicts.
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r-- | lib/libalpm/conflict.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index a8bcdd59..cae237cf 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -219,11 +219,11 @@ alpm_list_t *_alpm_outerconflicts(pmdb_t *db, alpm_list_t *packages) /** Check the package conflicts in a database * - * @param db_local the database to check + * @param pkglist the list of packages to check * @return an alpm_list_t of pmconflict_t */ -alpm_list_t SYMEXPORT *alpm_checkdbconflicts(pmdb_t *db_local) { - return(_alpm_innerconflicts(_alpm_db_get_pkgcache(db_local))); +alpm_list_t SYMEXPORT *alpm_checkconflicts(alpm_list_t *pkglist) { + return(_alpm_innerconflicts(pkglist)); } /* Returns a alpm_list_t* of file conflicts. |