diff options
author | Jeremy Allison <jra@samba.org> | 2011-02-28 12:31:53 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-02-28 21:58:20 +0100 |
commit | 8238357ac77d81a18f3faa822dafba954bba7b86 (patch) | |
tree | 6f4996dc59128c84f1da061e734f5c7d1feb0ff4 | |
parent | 410f9fad6c49e1af4e9700331aa2e1ed16f51b27 (diff) | |
download | samba-8238357ac77d81a18f3faa822dafba954bba7b86.tar.gz |
Fix warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t to uint32_t.
-rw-r--r-- | source3/smbd/sec_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sec_ctx.c b/source3/smbd/sec_ctx.c index 54ee7aca497..a7479ed67c3 100644 --- a/source3/smbd/sec_ctx.c +++ b/source3/smbd/sec_ctx.c @@ -132,7 +132,7 @@ static void gain_root(void) Get the list of current groups. ****************************************************************************/ -static int get_current_groups(gid_t gid, size_t *p_ngroups, gid_t **p_groups) +static int get_current_groups(gid_t gid, uint32_t *p_ngroups, gid_t **p_groups) { int i; gid_t grp; |