diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-10-30 16:35:12 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-10-30 15:00:04 +0000 |
commit | 5ab8e4f7e190c40f3da675c295e2580c92a86d39 (patch) | |
tree | d82831600d2ab189e117f0a17453e75139ecb050 /source4/dsdb | |
parent | dc0000e1a8f5233608d5bf59730200af3e041ce5 (diff) | |
download | samba-5ab8e4f7e190c40f3da675c295e2580c92a86d39.tar.gz samba-5ab8e4f7e190c40f3da675c295e2580c92a86d39.tar.bz2 samba-5ab8e4f7e190c40f3da675c295e2580c92a86d39.zip |
s4:extended_dn_store LDB module - fix counter types
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/extended_dn_store.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |