From 3ec4c643a4e1d3f2532b68cec816fa3f847eac1c Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 6 Nov 2009 20:14:41 +0100 Subject: s4:repl - change also here the counter variables to "unsigned" I changed also some "uint32_t" to "unsigned" since the LDB interface doesn't specify the bitlength of the unsigned type. --- source4/dsdb/repl/drepl_partitions.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/dsdb/repl/drepl_partitions.c') diff --git a/source4/dsdb/repl/drepl_partitions.c b/source4/dsdb/repl/drepl_partitions.c index b57a5c81c0..b17a17d5a3 100644 --- a/source4/dsdb/repl/drepl_partitions.c +++ b/source4/dsdb/repl/drepl_partitions.c @@ -40,7 +40,7 @@ WERROR dreplsrv_load_partitions(struct dreplsrv_service *s) struct ldb_result *r; struct ldb_message_element *el; static const char *attrs[] = { "hasMasterNCs", NULL }; - uint32_t i; + unsigned int i; int ret; basedn = samdb_ntds_settings_dn(s->samdb); @@ -195,7 +195,7 @@ static WERROR udv_convert(TALLOC_CTX *mem_ctx, const struct replUpToDateVectorCtr2 *udv, struct drsuapi_DsReplicaCursorCtrEx *udv_ex) { - int i; + uint32_t i; udv_ex->version = 2; udv_ex->reserved1 = 0; @@ -220,7 +220,7 @@ static WERROR dreplsrv_refresh_partition(struct dreplsrv_service *s, struct dom_sid *nc_sid; struct ldb_message_element *orf_el = NULL; struct ldb_result *r; - uint32_t i; + unsigned int i; int ret; TALLOC_CTX *mem_ctx = talloc_new(p); static const char *attrs[] = { -- cgit