From 5ab8e4f7e190c40f3da675c295e2580c92a86d39 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sat, 30 Oct 2010 16:35:12 +0200 Subject: s4:extended_dn_store LDB module - fix counter types --- source4/dsdb/samdb/ldb_modules/extended_dn_store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/dsdb') diff --git a/source4/dsdb/samdb/ldb_modules/extended_dn_store.c b/source4/dsdb/samdb/ldb_modules/extended_dn_store.c index fafe51132f..73389440f5 100644 --- a/source4/dsdb/samdb/ldb_modules/extended_dn_store.c +++ b/source4/dsdb/samdb/ldb_modules/extended_dn_store.c @@ -298,7 +298,7 @@ static int extended_dn_add(struct ldb_module *module, struct ldb_request *req) { struct extended_dn_context *ac; int ret; - int i, j; + unsigned int i, j; if (ldb_dn_is_special(req->op.add.message->dn)) { /* do not manipulate our control entries */ @@ -371,7 +371,7 @@ static int extended_dn_modify(struct ldb_module *module, struct ldb_request *req /* Determine the effect of the modification */ /* Apply the modify to the linked entry */ - int i, j; + unsigned int i, j; struct extended_dn_context *ac; int ret; -- cgit