From 30ee8beb9316a99e8a49993306252591106cb349 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 9 Sep 2006 10:05:58 +0000 Subject: r18301: I discovered how to load the warnings from a build farm build into emacs compile mode (hint, paste to a file, and compile as "cat filename"). This allowed me to fix nearly all the warnings for a IA_64 SuSE build very quickly. (This used to be commit eba6c84efff735bb0ca941ac4b755ce2b0591667) --- source4/dsdb/samdb/ldb_modules/schema.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source4/dsdb/samdb/ldb_modules/schema.c') diff --git a/source4/dsdb/samdb/ldb_modules/schema.c b/source4/dsdb/samdb/ldb_modules/schema.c index 36b7916e95..95330e7e8c 100644 --- a/source4/dsdb/samdb/ldb_modules/schema.c +++ b/source4/dsdb/samdb/ldb_modules/schema.c @@ -1126,9 +1126,6 @@ static int schema_add(struct ldb_module *module, struct ldb_request *req) static int schema_modify(struct ldb_module *module, struct ldb_request *req) { - struct ldb_handle *h; - struct schema_context *sctx; - if (ldb_dn_is_special(req->op.mod.message->dn)) { /* do not manipulate our control entries */ return ldb_next_request(module, req); } @@ -1138,9 +1135,6 @@ static int schema_modify(struct ldb_module *module, struct ldb_request *req) static int schema_delete(struct ldb_module *module, struct ldb_request *req) { - struct ldb_handle *h; - struct schema_context *sctx; - if (ldb_dn_is_special(req->op.del.dn)) { /* do not manipulate our control entries */ return ldb_next_request(module, req); } @@ -1152,9 +1146,6 @@ static int schema_delete(struct ldb_module *module, struct ldb_request *req) static int schema_rename(struct ldb_module *module, struct ldb_request *req) { - struct ldb_handle *h; - struct schema_context *sctx; - if (ldb_dn_is_special(req->op.rename.olddn) && ldb_dn_is_special(req->op.rename.newdn)) { /* do not manipulate our control entries */ return ldb_next_request(module, req); -- cgit