summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-11-11 21:56:18 +0100
committerDave Reisner <dreisner@archlinux.org>2011-11-11 22:08:21 +0100
commit64d54f674150fdcf4b925f7f27067c7ec0446863 (patch)
treea7e9889f7bc16303871b814f8937bc3908a7ad3c /lib
parent1a994bf180003b814b135a5acd6f3e2aa67121fc (diff)
downloadpacman-64d54f674150fdcf4b925f7f27067c7ec0446863.tar.gz
pacman-64d54f674150fdcf4b925f7f27067c7ec0446863.tar.xz
invert iteration order for ignoregroup
This is a simple change that allows comparions to be more in line with how other checks are done. It will be necessary for ensuing patchwork that implements fnmatch for comparing and assumes a specific argument ordering. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/package.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c
index 0b0bf6e4..e0f4ff26 100644
--- a/lib/libalpm/package.c
+++ b/lib/libalpm/package.c
@@ -695,9 +695,9 @@ int _alpm_pkg_should_ignore(alpm_handle_t *handle, alpm_pkg_t *pkg)
}
/* next see if the package is in a group that is ignored */
- for(groups = handle->ignoregroup; groups; groups = groups->next) {
+ for(groups = alpm_pkg_get_groups(pkg); groups; groups = groups->next) {
char *grp = groups->data;
- if(alpm_list_find_str(alpm_pkg_get_groups(pkg), grp)) {
+ if(alpm_list_find_str(handle->ignoregroup, grp)) {
return 1;
}
}