From: Jeremy Allison Date: Mon, 28 Feb 2011 20:31:53 +0000 (-0800) Subject: Fix warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t... X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=8238357ac77d81a18f3faa822dafba954bba7b86;p=kamenim%2Fsamba.git Fix warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t to uint32_t. --- diff --git a/source3/smbd/sec_ctx.c b/source3/smbd/sec_ctx.c index 54ee7aca49..a7479ed67c 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;