From bfa0853acbdd5708082b812127e7312d6cffa89b Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sat, 31 Dec 2005 17:59:28 +0000 Subject: fixed a segfault and added more verbose outputs in group handling (patch from VMiklos ) --- src/pacman/sync.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pacman/sync.c b/src/pacman/sync.c index 84ed2b9c..b1499fb7 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -249,11 +249,13 @@ static int sync_group(list_t *syncs, list_t *targets) sync_t *sync = j->data; PM_LIST *lp; - for(lp = alpm_db_getpkgcache(sync->db); lp; lp = alpm_list_next(lp)) { + for(lp = alpm_db_getgrpcache(sync->db); lp; lp = alpm_list_next(lp)) { PM_GRP *grp = alpm_list_getdata(lp); MSG(NL, "%s/%s\n", (char *)sync->treename, (char *)alpm_grp_getinfo(grp, PM_GRP_NAME)); - PM_LIST_display(" ", alpm_grp_getinfo(grp, PM_GRP_PKGNAMES)); + if(config->verbose > 1) { + PM_LIST_display(" ", alpm_grp_getinfo(grp, PM_GRP_PKGNAMES)); + } } } } -- cgit v1.2.3-54-g00ecf