From d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022 Mon Sep 17 00:00:00 2001
From: Matt Kraai <mkraai@beckman.com>
Date: Tue, 5 Jan 2010 09:42:54 -0800
Subject: Change uint_t to unsigned int in source4

Signed-off-by: Stefan Metzmacher <metze@samba.org>
---
 source4/dsdb/samdb/ldb_modules/password_hash.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'source4/dsdb/samdb/ldb_modules')

diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c
index df4a344298..cd588211da 100644
--- a/source4/dsdb/samdb/ldb_modules/password_hash.c
+++ b/source4/dsdb/samdb/ldb_modules/password_hash.c
@@ -84,8 +84,8 @@ struct ph_context {
 
 struct domain_data {
 	bool store_cleartext;
-	uint_t pwdProperties;
-	uint_t pwdHistoryLength;
+	unsigned int pwdProperties;
+	unsigned int pwdHistoryLength;
 	const char *netbios_domain;
 	const char *dns_domain;
 	const char *realm;
-- 
cgit