From: Timo Sirainen Date: Mon, 6 Apr 2009 17:14:03 +0000 (-0400) Subject: pam: Compiling fix. X-Git-Tag: 2.0.alpha1~1033 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc02ecaf500ed002d394e4297f528f172052545d;p=thirdparty%2Fdovecot%2Fcore.git pam: Compiling fix. --HG-- branch : HEAD --- diff --git a/src/auth/passdb-pam.c b/src/auth/passdb-pam.c index ee05c053d2..ea6b2b39e9 100644 --- a/src/auth/passdb-pam.c +++ b/src/auth/passdb-pam.c @@ -180,7 +180,7 @@ static int try_pam_auth(struct auth_request *request, pam_handle_t *pamh, auth_request_log_error(request, "pam", "%s", str); } else if (status == PAM_AUTH_ERR) { str = t_strconcat(str, " (password mismatch?)", NULL); - if (request->auth->verbose_debug_passwords) { + if (request->auth->set->debug_passwords) { str = t_strconcat(str, " (given password: ", request->mech_password, ")", NULL);