From e6296083c2da697c23544e053425cba63ffd527f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 11 Nov 2005 07:03:17 +0000 Subject: r11667: Fix a debug message (This used to be commit d1f506fa1353cd1b9ddba923dc17a884f7560be6) --- source3/nsswitch/winbindd_pam.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/nsswitch/winbindd_pam.c b/source3/nsswitch/winbindd_pam.c index 6b65d7bfe4..4582eced0e 100644 --- a/source3/nsswitch/winbindd_pam.c +++ b/source3/nsswitch/winbindd_pam.c @@ -530,8 +530,9 @@ void winbindd_pam_auth_crap(struct winbindd_cli_state *state) done: set_auth_errors(&state->response, result); - DEBUG(5, ("CRAP authentication for %s returned %s (PAM: %d)\n", - state->request.data.auth.user, + DEBUG(5, ("CRAP authentication for %s\\%s returned %s (PAM: %d)\n", + state->request.data.auth_crap.domain, + state->request.data.auth_crap.user, state->response.data.auth.nt_status_string, state->response.data.auth.pam_error)); request_error(state); -- cgit