From 01bc248f42f1a056091aa3dd99ba9615ba61df6f Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 10 Feb 2011 14:24:19 -0500 Subject: Clear up -Wunused-but-set-variable warnings --- src/ldb_modules/memberof.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/ldb_modules') diff --git a/src/ldb_modules/memberof.c b/src/ldb_modules/memberof.c index 372aa544f..311e7e516 100644 --- a/src/ldb_modules/memberof.c +++ b/src/ldb_modules/memberof.c @@ -1727,16 +1727,9 @@ static int mbof_del_exop_search_callback(struct ldb_request *req, static int mbof_del_execute_cont(struct mbof_del_operation *delop) { struct mbof_del_ancestors_ctx *anc_ctx; - struct mbof_del_operation *parent; - struct mbof_del_ctx *del_ctx; - struct mbof_ctx *ctx; struct mbof_dn_array *new_list; int i; - del_ctx = delop->del_ctx; - parent = delop->parent; - ctx = del_ctx->ctx; - anc_ctx = talloc_zero(delop, struct mbof_del_ancestors_ctx); if (!anc_ctx) { return LDB_ERR_OPERATIONS_ERROR; -- cgit