summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-05-30 20:45:56 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-05-30 20:52:10 +0200
commitf927881028303eb955566c08a940cca18e50ce99 (patch)
tree21301fed7c1b34f00ac1d53f7ee516b6eb270efe /source4
parent598656985aeb1a1ac11d246bb942c2248dfbfd8c (diff)
downloadsamba-f927881028303eb955566c08a940cca18e50ce99.tar.gz
samba-f927881028303eb955566c08a940cca18e50ce99.tar.bz2
samba-f927881028303eb955566c08a940cca18e50ce99.zip
s4:dsdb/common/util.c - fix a counter variable
Diffstat (limited to 'source4')
-rw-r--r--source4/dsdb/common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c
index 987864f748..9329e61135 100644
--- a/source4/dsdb/common/util.c
+++ b/source4/dsdb/common/util.c
@@ -3099,7 +3099,7 @@ int dsdb_find_nc_root(struct ldb_context *samdb, TALLOC_CTX *mem_ctx, struct ldb
int ret;
struct ldb_message_element *el;
struct ldb_result *root_res;
- int i;
+ unsigned int i;
struct ldb_dn **nc_dns;
tmp_ctx = talloc_new(samdb);