From 058daa1cf5742fc95fc15141bbd5fad96d02dee6 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 18 Sep 2010 10:54:37 +1000 Subject: s3-acl Use uint32_t for counting the ACEs Signed-off-by: Andrew Tridgell --- source3/lib/util_seaccess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util_seaccess.c b/source3/lib/util_seaccess.c index 5fc450ec25..6500f926fd 100644 --- a/source3/lib/util_seaccess.c +++ b/source3/lib/util_seaccess.c @@ -157,7 +157,7 @@ NTSTATUS se_access_check(const struct security_descriptor *sd, uint32_t access_desired, uint32_t *access_granted) { - int i; + uint32_t i; uint32_t bits_remaining; *access_granted = access_desired; -- cgit