diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-05-30 20:45:56 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-05-30 20:52:10 +0200 |
commit | f927881028303eb955566c08a940cca18e50ce99 (patch) | |
tree | 21301fed7c1b34f00ac1d53f7ee516b6eb270efe /source4/dsdb | |
parent | 598656985aeb1a1ac11d246bb942c2248dfbfd8c (diff) | |
download | samba-f927881028303eb955566c08a940cca18e50ce99.tar.gz samba-f927881028303eb955566c08a940cca18e50ce99.tar.bz2 samba-f927881028303eb955566c08a940cca18e50ce99.zip |
s4:dsdb/common/util.c - fix a counter variable
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/common/util.c | 2 |
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); |