diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2008-07-08 11:20:25 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2008-07-08 11:20:25 +0000 |
commit | a56a27d91b53f6029760d6a0e38b44b46f086f87 (patch) | |
tree | 3a4b8dc280fea9eb4e0e4d2e8b072081f1b13fe0 /modules/pam_unix | |
parent | 8f0abb6a4553664074d27bd6c6ddea09598c7e72 (diff) | |
download | pam-a56a27d91b53f6029760d6a0e38b44b46f086f87.tar.gz pam-a56a27d91b53f6029760d6a0e38b44b46f086f87.tar.bz2 pam-a56a27d91b53f6029760d6a0e38b44b46f086f87.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
2008-07-08 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_unix/passverify.c (verify_pwd_hash): Adjust debug
statement.
Diffstat (limited to 'modules/pam_unix')
-rw-r--r-- | modules/pam_unix/passverify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_unix/passverify.c b/modules/pam_unix/passverify.c index 6d588e63..ce5bc450 100644 --- a/modules/pam_unix/passverify.c +++ b/modules/pam_unix/passverify.c @@ -117,7 +117,7 @@ verify_pwd_hash(const char *p, char *hash, unsigned int nullok) p = NULL; /* no longer needed here */ /* the moment of truth -- do we agree with the password? */ - D(("comparing state of pp[%s] and salt[%s]", pp, salt)); + D(("comparing state of pp[%s] and hash[%s]", pp, hash)); if (pp && strcmp(pp, hash) == 0) { retval = PAM_SUCCESS; |