diff options
author | Tim Potter <tpot@samba.org> | 2000-07-10 06:41:04 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-07-10 06:41:04 +0000 |
commit | 898a483cdab1ed7d8ff902c0dc0e0620440ae4cd (patch) | |
tree | 8470252abf27634d16a8a9fae9f0cad111b9d127 /source/lib/util_seaccess.c | |
parent | f866c18f6be65db67d9d2a6c0b42e1af3b421e6c (diff) | |
download | samba-898a483cdab1ed7d8ff902c0dc0e0620440ae4cd.tar.gz samba-898a483cdab1ed7d8ff902c0dc0e0620440ae4cd.tar.xz samba-898a483cdab1ed7d8ff902c0dc0e0620440ae4cd.zip |
Fixes for various compile warnings on Solaris 8.
Diffstat (limited to 'source/lib/util_seaccess.c')
-rw-r--r-- | source/lib/util_seaccess.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/util_seaccess.c b/source/lib/util_seaccess.c index 128cbffc0c4..4dbeb36ae6a 100644 --- a/source/lib/util_seaccess.c +++ b/source/lib/util_seaccess.c @@ -210,7 +210,8 @@ BOOL se_access_check(SEC_DESC *sd, uid_t uid, gid_t gid, int ngroups, { DOM_SID user_sid, group_sid; DOM_SID **group_sids = NULL; - int i, j, ngroup_sids = 0; + int i, j; + uint ngroup_sids = 0; SEC_ACL *acl; uint8 check_ace_type; |