From 839bcee0b47e997730c962b26507500ae80a9183 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 6 Dec 2001 04:23:06 +0000 Subject: Fixed typo in fix for typo in debug. (-: (This used to be commit 7c64e5f1481e832767ae07e63d7d9d116131b331) --- source3/nsswitch/winbindd_group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c index 440f009366..7a7abb9a8c 100644 --- a/source3/nsswitch/winbindd_group.c +++ b/source3/nsswitch/winbindd_group.c @@ -176,7 +176,7 @@ static BOOL fill_grent_mem(struct winbindd_domain *domain, *gr_mem_len = buf_len; DEBUG(10, ("fill_grent_mem(): num_mem = %d, len = %d, mem = %s\n", - *num_gr_mem, buf_len, num_gr_mem ? buf : "NULL")); + *num_gr_mem, buf_len, *num_gr_mem ? buf : "NULL")); result = True; -- cgit