[PATCH] Increase the max_grp value to 128 (AIX NGROUPS_MAX value) instead of 32 to allow AIX to call sys_getgrouplist only once

Yannick Bergeron burgergold at hotmail.com
Thu Jul 30 17:31:24 MDT 2009


---
 source3/lib/system_smbd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/source3/lib/system_smbd.c b/source3/lib/system_smbd.c
index 1f5dd31..b22d15f 100644
--- a/source3/lib/system_smbd.c
+++ b/source3/lib/system_smbd.c
@@ -153,7 +153,7 @@ bool getgroups_unix_user(TALLOC_CTX *mem_ctx, const char *user,
 	gid_t *groups;
 	int i;
 
-	max_grp = MIN(32, groups_max());
+	max_grp = MIN(128, groups_max());
 	temp_groups = SMB_MALLOC_ARRAY(gid_t, max_grp);
 	if (! temp_groups) {
 		return False;
-- 
1.6.0.4


--Boundary_(ID_sJTp7ca0Qs5K0Ll8cC1loQ)--


More information about the samba-technical mailing list