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/confdb/confdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/confdb') diff --git a/src/confdb/confdb.c b/src/confdb/confdb.c index 8ae8d016..14e9f057 100644 --- a/src/confdb/confdb.c +++ b/src/confdb/confdb.c @@ -1190,7 +1190,7 @@ int confdb_get_domain(struct confdb_ctx *cdb, return ret; } - for (dom = doms; dom; dom = dom->next) { + for (dom = doms; dom; dom = get_next_domain(dom, false)) { if (strcasecmp(dom->name, name) == 0) { *_domain = dom; return EOK; -- cgit