[pacman-dev] [PATCH 1/3] invert iteration order for ignoregroup

Dave Reisner d at falconindy.com
Sat Nov 12 14:13:23 EST 2011


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 at archlinux.org>
---
 lib/libalpm/package.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c
index 0b0bf6e..e0f4ff2 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;
 		}
 	}
-- 
1.7.7.3



More information about the pacman-dev mailing list