1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

s4:dsdb/common/util.c - fix a counter variable

This commit is contained in:
Matthias Dieter Wallnöfer 2010-05-30 20:45:56 +02:00
parent 598656985a
commit f927881028

View File

@ -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);