summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_group.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-10-06 19:10:32 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:17 -0500
commit80b4e7ae7da2c91b776bb1e0d36c08c3145dc0c8 (patch)
tree7c9ff3a2eb706d770ccd8e0dc18a0fefe1d61c5d /source3/nsswitch/winbindd_group.c
parente918cf3abfa14d85cc21bb66d00b9e7cbb0d0626 (diff)
downloadsamba-80b4e7ae7da2c91b776bb1e0d36c08c3145dc0c8.tar.gz
samba-80b4e7ae7da2c91b776bb1e0d36c08c3145dc0c8.tar.bz2
samba-80b4e7ae7da2c91b776bb1e0d36c08c3145dc0c8.zip
r19155: Fix debug message.
Jeremy. (This used to be commit 42e5481ce4bebc65040d466b49e3c45cd4e79f5d)
Diffstat (limited to 'source3/nsswitch/winbindd_group.c')
-rw-r--r--source3/nsswitch/winbindd_group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c
index 2067c43f8b..de19ee02b5 100644
--- a/source3/nsswitch/winbindd_group.c
+++ b/source3/nsswitch/winbindd_group.c
@@ -157,7 +157,7 @@ static BOOL fill_grent_mem(struct winbindd_domain *domain,
(*num_gr_mem)++;
DEBUG(10, ("buf_len + %d = %d\n", len + 1, buf_len));
} else {
- DEBUG(10, ("appending %s at ndx %d\n", name, len));
+ DEBUG(10, ("appending %s at ndx %d\n", name, buf_ndx));
safe_strcpy(&buf[buf_ndx], name, len);
buf_ndx += len;
buf[buf_ndx] = ',';