summaryrefslogtreecommitdiff
path: root/source3/lib/system_smbd.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-04-20 01:24:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:16 -0500
commitae2e6490743c0fd89e11c85cd72d549f39be7674 (patch)
tree499689b37b255f8cebeb3b524807c93b30b13363 /source3/lib/system_smbd.c
parent335b10ef10f9825ad52501c77bc6b77cdad39067 (diff)
downloadsamba-ae2e6490743c0fd89e11c85cd72d549f39be7674.tar.gz
samba-ae2e6490743c0fd89e11c85cd72d549f39be7674.tar.bz2
samba-ae2e6490743c0fd89e11c85cd72d549f39be7674.zip
r288: combination of BUG 1081 and patch from J. Klinger -- added remove_duplicate_gids() to smbd and winbindd
(This used to be commit 95c68103ea9dbd02651e26fcaa15dd054b157529)
Diffstat (limited to 'source3/lib/system_smbd.c')
-rw-r--r--source3/lib/system_smbd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/lib/system_smbd.c b/source3/lib/system_smbd.c
index 73c910e631..7edc7ca98f 100644
--- a/source3/lib/system_smbd.c
+++ b/source3/lib/system_smbd.c
@@ -99,6 +99,11 @@ static int getgrouplist_internals(const char *user, gid_t gid, gid_t *groups, in
free(gids_saved);
return -1;
}
+
+ /* this will remove any duplicates gids in the list and
+ update the group counter */
+
+ remove_duplicate_gids( grpcnt, groups );
free(gids_saved);
return ret;