From e5e32021c23f3726d68ee756e8e3de48b3214063 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 21 Mar 2010 00:52:34 -0400 Subject: sysdb: remove remaining traces of sysdb_handle --- src/tools/sss_groupshow.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/tools/sss_groupshow.c') diff --git a/src/tools/sss_groupshow.c b/src/tools/sss_groupshow.c index b6fb1a152..3f72fcefc 100644 --- a/src/tools/sss_groupshow.c +++ b/src/tools/sss_groupshow.c @@ -267,7 +267,6 @@ done: struct group_show_state { struct tevent_context *ev; struct sysdb_ctx *sysdb; - struct sysdb_handle *handle; struct sss_domain_info *domain; struct group_info *root; @@ -294,7 +293,6 @@ static int group_show_trim_memberof(TALLOC_CTX *mem_ctx, struct tevent_req *group_show_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct sysdb_ctx *sysdb, - struct sysdb_handle *handle, struct sss_domain_info *domain, bool recursive, const char *name) @@ -315,7 +313,6 @@ struct tevent_req *group_show_send(TALLOC_CTX *mem_ctx, } state->ev = ev; state->sysdb = sysdb; - state->handle = handle; state->domain = domain; state->recursive = recursive; @@ -876,7 +873,7 @@ int main(int argc, const char **argv) goto fini; } - req = group_show_send(tctx, tctx->ev, tctx->sysdb, tctx->handle, + req = group_show_send(tctx, tctx->ev, tctx->sysdb, tctx->local, pc_recursive, tctx->octx->name); if (!req) { ERROR("Cannot initiate search\n"); -- cgit