From 23b14c1931b6d7e7f767c247061512e6f5eb609c Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 15 Nov 2013 23:15:25 +0100 Subject: Remove unused parameter from group_show_mpg --- src/tools/sss_groupshow.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/tools/sss_groupshow.c') diff --git a/src/tools/sss_groupshow.c b/src/tools/sss_groupshow.c index 224e71c86..f33684519 100644 --- a/src/tools/sss_groupshow.c +++ b/src/tools/sss_groupshow.c @@ -544,7 +544,6 @@ int group_show_recurse(TALLOC_CTX *mem_ctx, /*==================Get info about MPG================================= */ static int group_show_mpg(TALLOC_CTX *mem_ctx, - struct sysdb_ctx *sysdb, struct sss_domain_info *domain, const char *name, struct group_info **res) @@ -714,8 +713,7 @@ int main(int argc, const char **argv) tctx->local, pc_recursive, tctx->octx->name, &root); /* Also show MPGs */ if (ret == ENOENT) { - ret = group_show_mpg(tctx, tctx->sysdb, tctx->local, - tctx->octx->name, &root); + ret = group_show_mpg(tctx, tctx->local, tctx->octx->name, &root); } /* Process result */ -- cgit