svn commit: samba r23619 - in branches/SAMBA_3_0/source/nsswitch: .
jerry at samba.org
jerry at samba.org
Tue Jun 26 21:22:02 GMT 2007
Author: jerry
Date: 2007-06-26 21:22:01 +0000 (Tue, 26 Jun 2007)
New Revision: 23619
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23619
Log:
Fix compile warning in fill_grent_mem() caused by mismatched counter size.
Modified:
branches/SAMBA_3_0/source/nsswitch/winbindd_group.c
Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_group.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_group.c 2007-06-26 20:36:23 UTC (rev 23618)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_group.c 2007-06-26 21:22:01 UTC (rev 23619)
@@ -543,7 +543,7 @@
n_glist = 1;
for ( i=0; i<max_depth && glist; i++ ) {
- size_t n_members = 0;
+ uint32 n_members = 0;
char **members = NULL;
NTSTATUS nt_status;
More information about the samba-cvs
mailing list