diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-16 18:33:20 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-16 18:57:30 +0200 |
commit | 19fcc7401666cd892f7b8a5a49854a1b2eb9988b (patch) | |
tree | e39eb1b0f03ee527cdf75426e0c0df0824be32f0 /lib/libalpm/conflict.c | |
parent | bdf00d3dbd19c3def6127f3d372d630930a26abb (diff) | |
download | pacman-19fcc7401666cd892f7b8a5a49854a1b2eb9988b.tar.gz pacman-19fcc7401666cd892f7b8a5a49854a1b2eb9988b.tar.xz |
Make struct pmconflict_t public
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r-- | lib/libalpm/conflict.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index d9a0b7ca..39f42bfe 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -547,22 +547,4 @@ alpm_list_t *_alpm_db_find_fileconflicts(pmhandle_t *handle, return conflicts; } -const char SYMEXPORT *alpm_conflict_get_package1(pmconflict_t *conflict) -{ - ASSERT(conflict != NULL, return NULL); - return conflict->package1; -} - -const char SYMEXPORT *alpm_conflict_get_package2(pmconflict_t *conflict) -{ - ASSERT(conflict != NULL, return NULL); - return conflict->package2; -} - -const char SYMEXPORT *alpm_conflict_get_reason(pmconflict_t *conflict) -{ - ASSERT(conflict != NULL, return NULL); - return conflict->reason; -} - /* vim: set ts=2 sw=2 noet: */ |