From 4668b4765530cf37289235e483f301100cc1ae21 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Thu, 18 Apr 2013 12:43:47 +0200 Subject: Remove unused TALLOC_CTX from responder_get_domain() Recent refactoring removed the need to copy the domain info data of sub-domains because the related objects will not be removed from memory anymore. --- src/responder/sudo/sudosrv_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/responder/sudo') diff --git a/src/responder/sudo/sudosrv_query.c b/src/responder/sudo/sudosrv_query.c index a8501df56..d88d24726 100644 --- a/src/responder/sudo/sudosrv_query.c +++ b/src/responder/sudo/sudosrv_query.c @@ -412,7 +412,7 @@ errno_t sudosrv_parse_query_recv(TALLOC_CTX *mem_ctx, if (domainname != NULL) { /* mem_ctx because it duplicates only subdomains not domains * so I cannot easily steal it */ - domain = responder_get_domain(mem_ctx, state->rctx, domainname); + domain = responder_get_domain(state->rctx, domainname); if (domain == NULL) { DEBUG(SSSDBG_OP_FAILURE, ("Corresponding domain [%s] has not been " "found\n", domainname)); -- cgit