summaryrefslogtreecommitdiff
path: root/source4/dsdb/repl/replicated_objects.c
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-06 20:14:41 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-05 18:28:35 +0100
commit3ec4c643a4e1d3f2532b68cec816fa3f847eac1c (patch)
treed8e616e31ac1e0a194a551823dcf071342532327 /source4/dsdb/repl/replicated_objects.c
parent6a91bf60e212082622c57448105154e7350d0028 (diff)
downloadsamba-3ec4c643a4e1d3f2532b68cec816fa3f847eac1c.tar.gz
samba-3ec4c643a4e1d3f2532b68cec816fa3f847eac1c.tar.bz2
samba-3ec4c643a4e1d3f2532b68cec816fa3f847eac1c.zip
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.
Diffstat (limited to 'source4/dsdb/repl/replicated_objects.c')
-rw-r--r--source4/dsdb/repl/replicated_objects.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/repl/replicated_objects.c b/source4/dsdb/repl/replicated_objects.c
index b95bf87e36..4d500e9637 100644
--- a/source4/dsdb/repl/replicated_objects.c
+++ b/source4/dsdb/repl/replicated_objects.c
@@ -115,7 +115,7 @@ static WERROR dsdb_convert_object_ex(struct ldb_context *ldb,
struct drsuapi_DsReplicaMetaData *d;
struct replPropertyMetaData1 *m;
struct ldb_message_element *e;
- int j;
+ uint32_t j;
a = &in->object.attribute_ctr.attributes[i];
d = &in->meta_data_ctr->meta_data[i];
@@ -342,7 +342,7 @@ static WERROR dsdb_convert_object(struct ldb_context *ldb,
struct ldb_message **_msg)
{
WERROR status;
- uint32_t i;
+ unsigned int i;
struct ldb_message *msg;
if (!in->object.identifier) {