diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-14 11:56:03 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-02-10 22:08:46 +0100 |
commit | aab938c5975f0e3b85c7c79a5d718e5fefed7217 (patch) | |
tree | 1ab6ab467b3c1a8ae99a0b684b7153d3623ccf40 /src/util | |
parent | b8dcd1216e5ea7065213c750a92dabfe01fa3b70 (diff) | |
download | sssd-aab938c5975f0e3b85c7c79a5d718e5fefed7217.tar.gz sssd-aab938c5975f0e3b85c7c79a5d718e5fefed7217.tar.bz2 sssd-aab938c5975f0e3b85c7c79a5d718e5fefed7217.zip |
Avoid sysdb_subdom in sysdb_get_subdomains()
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/domain_info_utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c index c45c83d6..1ff7c0c6 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")); |