1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r23619: Fix compile warning in fill_grent_mem() caused by mismatched counter size.

This commit is contained in:
Gerald Carter 2007-06-26 21:22:01 +00:00 committed by Gerald (Jerry) Carter
parent afabd68b6a
commit 05520d6b0a

View File

@ -543,7 +543,7 @@ static BOOL fill_grent_mem(struct winbindd_domain *domain,
n_glist = 1; n_glist = 1;
for ( i=0; i<max_depth && glist; i++ ) { for ( i=0; i<max_depth && glist; i++ ) {
size_t n_members = 0; uint32 n_members = 0;
char **members = NULL; char **members = NULL;
NTSTATUS nt_status; NTSTATUS nt_status;