From db18dda869bc6c52a41797b2066cf121cf10f49c Mon Sep 17 00:00:00 2001 From: Pavel Reichl Date: Mon, 21 Jul 2014 08:06:23 +0100 Subject: UTIL: rename find_subdomain_by_name The function was named "find_subdomain" yet it could find both main domain and subdomain. sed 's/find_subdomain_by_name/find_domain_by_name/' -i `find . -name "*.[ch]"` Reviewed-by: Jakub Hrozek --- src/providers/ad/ad_subdomains.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/providers/ad/ad_subdomains.c') diff --git a/src/providers/ad/ad_subdomains.c b/src/providers/ad/ad_subdomains.c index efe4b3fe1..f7574d05d 100644 --- a/src/providers/ad/ad_subdomains.c +++ b/src/providers/ad/ad_subdomains.c @@ -799,8 +799,8 @@ static struct ad_id_ctx *ads_get_root_id_ctx(struct ad_subdomains_req_ctx *ctx) } /* With a subsequent run, the root should already be known */ - root = find_subdomain_by_name(ctx->sd_ctx->be_ctx->domain, - name, false); + root = find_domain_by_name(ctx->sd_ctx->be_ctx->domain, + name, false); if (root == NULL) { DEBUG(SSSDBG_OP_FAILURE, "Could not find the root domain\n"); return NULL; -- cgit