From aab938c5975f0e3b85c7c79a5d718e5fefed7217 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 14 Jan 2013 11:56:03 -0500 Subject: Avoid sysdb_subdom in sysdb_get_subdomains() --- src/util/domain_info_utils.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/util') diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c index c45c83d64..1ff7c0c6d 100644 --- a/src/util/domain_info_utils.c +++ b/src/util/domain_info_utils.c @@ -31,6 +31,9 @@ struct sss_domain_info *new_subdomain(TALLOC_CTX *mem_ctx, { struct sss_domain_info *dom; + DEBUG(SSSDBG_TRACE_FUNC, + ("Creating [%s] as subdomain of [%s]!\n", name, parent->name)); + dom = talloc_zero(mem_ctx, struct sss_domain_info); if (dom == NULL) { DEBUG(SSSDBG_OP_FAILURE, ("talloc_zero failed.\n")); -- cgit