[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-2796-g6d6b205

Jeremy Allison jra at samba.org
Fri Aug 8 19:30:14 GMT 2008


The branch, v3-2-test has been updated
       via  6d6b205e444154e1bd2993d964eff4cf532bacd8 (commit)
      from  1ee1e8306f3578c19fe015145eb8da1013f7b820 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 6d6b205e444154e1bd2993d964eff4cf532bacd8
Author: Yannick Bergeron <yaberger at ca.ibm.com>
Date:   Fri Aug 8 13:32:15 2008 -0400

    using NGROUPS_MAX instead of 32 for the max group value in rep_initgroups() subroutine in lib/replace/replace.c

-----------------------------------------------------------------------

Summary of changes:
 source/lib/replace/replace.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/lib/replace/replace.c b/source/lib/replace/replace.c
index 106c9df..98d799b 100644
--- a/source/lib/replace/replace.c
+++ b/source/lib/replace/replace.c
@@ -170,7 +170,7 @@ int rep_initgroups(char *name, gid_t id)
 #include <grp.h>
 
 	gid_t *grouplst = NULL;
-	int max_gr = 32;
+	int max_gr = NGROUPS_MAX;
 	int ret;
 	int    i,j;
 	struct group *g;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list