From 64d54f674150fdcf4b925f7f27067c7ec0446863 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 11 Nov 2011 15:56:18 -0500 Subject: 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 --- lib/libalpm/package.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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; } } -- cgit v1.2.3-24-g4f1b