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

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


The branch, v3-3-test has been updated
       via  13b1a232d2fe05ae3e924ea2503d05ff5084146e (commit)
      from  0d161d336ab9eeccd90d19ef1473646c3008864a (commit)

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


- Log -----------------------------------------------------------------
commit 13b1a232d2fe05ae3e924ea2503d05ff5084146e
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