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 | b561c185972921861946a69b8846681bc7ed3f87 (patch) | |
tree | 98d741d45164d90d0162ddcd01aa5f40adf6dc1a /source3/lib | |
parent | 64299375b544de91dab75d62610d7dc7f1f8328d (diff) | |
download | samba-b561c185972921861946a69b8846681bc7ed3f87.tar.gz samba-b561c185972921861946a69b8846681bc7ed3f87.tar.bz2 samba-b561c185972921861946a69b8846681bc7ed3f87.zip |
Fixes for various compile warnings on Solaris 8.
(This used to be commit 898a483cdab1ed7d8ff902c0dc0e0620440ae4cd)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_seaccess.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/util_seaccess.c b/source3/lib/util_seaccess.c index 128cbffc0c..4dbeb36ae6 100644 --- a/source3/lib/util_seaccess.c +++ b/source3/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; |