diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-18 10:54:37 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-14 02:35:04 +0000 |
commit | 058daa1cf5742fc95fc15141bbd5fad96d02dee6 (patch) | |
tree | 235785143a099a72d8c8ee5596c790fb99d15a4e /source3/lib | |
parent | a040466d0d6866f2ede22261fbd90018773b03de (diff) | |
download | samba-058daa1cf5742fc95fc15141bbd5fad96d02dee6.tar.gz samba-058daa1cf5742fc95fc15141bbd5fad96d02dee6.tar.bz2 samba-058daa1cf5742fc95fc15141bbd5fad96d02dee6.zip |
s3-acl Use uint32_t for counting the ACEs
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_seaccess.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |