From f91e4aacb78d33791efcd744000597d5254dac4b Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 8 Jan 2013 14:02:53 -0500 Subject: Stop creating fake sysdb contexts Now that the sysdb context does not contain anymore domain related data we can simply stop creating faxe sysdb context and just reference the parent context. --- src/util/domain_info_utils.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/util') diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c index 45b9f7b5..d0f709ec 100644 --- a/src/util/domain_info_utils.c +++ b/src/util/domain_info_utils.c @@ -28,8 +28,7 @@ struct sss_domain_info *new_subdomain(TALLOC_CTX *mem_ctx, const char *flat_name, const char *id) { - int ret; - struct sss_domain_info *dom = NULL; + struct sss_domain_info *dom; dom = talloc_zero(mem_ctx, struct sss_domain_info); if (dom == NULL) { @@ -94,11 +93,7 @@ struct sss_domain_info *new_subdomain(TALLOC_CTX *mem_ctx, DEBUG(SSSDBG_OP_FAILURE, ("Missing sysdb context in parent domain.\n")); goto fail; } - ret = sysdb_get_subdomain_context(dom, parent->sysdb, dom, &dom->sysdb); - if (ret != EOK) { - DEBUG(SSSDBG_OP_FAILURE, ("sysdb_get_subdomain_context failed.\n")); - goto fail; - } + dom->sysdb = parent->sysdb; return dom; -- cgit