Fix warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t...
authorJeremy Allison <jra@samba.org>
Mon, 28 Feb 2011 20:31:53 +0000 (12:31 -0800)
committerJeremy Allison <jra@samba.org>
Mon, 28 Feb 2011 20:58:20 +0000 (21:58 +0100)
source3/smbd/sec_ctx.c

index 54ee7aca4975081339dc9d38ff9d20510fcfbdb4..a7479ed67c305094725bd45e071892e3d0aa92f7 100644 (file)
@@ -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;