From 0232747f04b650796db56fd7b487aee8a96fab03 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 14 Jan 2013 17:04:00 -0500 Subject: Add function get_next_domain() Use this function instead of explicitly calling domain->next This function allows to get the next primary domain or to descend into the subdomains and replaces also get_next_dom_or_subdom() --- src/tools/sss_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/sss_cache.c') diff --git a/src/tools/sss_cache.c b/src/tools/sss_cache.c index 2fb75ad60..db6c792cd 100644 --- a/src/tools/sss_cache.c +++ b/src/tools/sss_cache.c @@ -103,7 +103,7 @@ int main(int argc, const char *argv[]) goto done; } - for (dinfo = tctx->domains; dinfo; dinfo = dinfo->next) { + for (dinfo = tctx->domains; dinfo; dinfo = get_next_domain(dinfo, false)) { sysdb = dinfo->sysdb; /* Update filters for each domain */ -- cgit