1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

Fix one more warning introduced by changing the size of UNIX_USER_TOKEN->ngroups from size_t to uint32_t.

Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Mon Feb 28 22:43:50 CET 2011 on sn-devel-104
This commit is contained in:
Jeremy Allison 2011-02-28 12:38:18 -08:00
parent 8238357ac7
commit f7b4209f99

View File

@ -95,7 +95,7 @@ static NTSTATUS pdb_wbc_sam_enum_group_memberships(struct pdb_methods *methods,
struct samu *user,
struct dom_sid **pp_sids,
gid_t **pp_gids,
size_t *p_num_groups)
uint32_t *p_num_groups)
{
size_t i;
const char *username = pdb_get_username(user);