From dbf16bf251459d33d85c17e6cf1e48d10137bf98 Mon Sep 17 00:00:00 2001 From: Yannick Bergeron Date: Thu, 30 Jul 2009 19:31:24 -0400 Subject: [PATCH] Increase the max_grp value to 128 (AIX NGROUPS_MAX value) instead of 32 to allow AIX to call sys_getgrouplist only once (cherry picked from commit c3e12444f57e24dcd6c9259537ed0489db4658e9) (cherry picked from commit 2666b3e27444ffcad3afc21e276f189ac238433f) --- source3/lib/system_smbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/system_smbd.c b/source3/lib/system_smbd.c index 1f5dd3172f3..b22d15fb8a9 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; -- 2.11.4.GIT