From 8238357ac77d81a18f3faa822dafba954bba7b86 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 28 Feb 2011 12:31:53 -0800 Subject: [PATCH] Fix warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t to uint32_t. --- source3/smbd/sec_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1