From 07eb85063b78b26588ce262e7cec37399e0bef96 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/memberof.c') diff --git a/src/ldb_modules/memberof.c b/src/ldb_modules/memberof.c index 31547464c..019d67cf0 100644 --- a/src/ldb_modules/memberof.c +++ b/src/ldb_modules/memberof.c @@ -1728,16 +1728,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