code cleanup
This commit is contained in:
parent
4857012be7
commit
d0ba0dcbee
1 changed files with 3 additions and 3 deletions
|
@ -230,7 +230,7 @@ static int sync_search(list_t *syncs, list_t *targets)
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sync_group(list_t *syncs, list_t *targets)
|
static int sync_group(int level, list_t *syncs, list_t *targets)
|
||||||
{
|
{
|
||||||
list_t *i, *j;
|
list_t *i, *j;
|
||||||
|
|
||||||
|
@ -255,7 +255,7 @@ static int sync_group(list_t *syncs, list_t *targets)
|
||||||
PM_GRP *grp = alpm_list_getdata(lp);
|
PM_GRP *grp = alpm_list_getdata(lp);
|
||||||
|
|
||||||
MSG(NL, "%s/%s\n", sync->treename, (char *)alpm_grp_getinfo(grp, PM_GRP_NAME));
|
MSG(NL, "%s/%s\n", sync->treename, (char *)alpm_grp_getinfo(grp, PM_GRP_NAME));
|
||||||
if(config->group > 1) {
|
if(level > 1) {
|
||||||
PM_LIST_display(" ", alpm_grp_getinfo(grp, PM_GRP_PKGNAMES));
|
PM_LIST_display(" ", alpm_grp_getinfo(grp, PM_GRP_PKGNAMES));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -399,7 +399,7 @@ int pacman_sync(list_t *targets)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config->group) {
|
if(config->group) {
|
||||||
return(sync_group(pmc_syncs, targets));
|
return(sync_group(config->group, pmc_syncs, targets));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config->op_s_info) {
|
if(config->op_s_info) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue