]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs:
authorThorsten Kukuk <kukuk@thkukuk.de>
Tue, 8 Jul 2008 11:20:25 +0000 (11:20 +0000)
committerThorsten Kukuk <kukuk@thkukuk.de>
Tue, 8 Jul 2008 11:20:25 +0000 (11:20 +0000)
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.

ChangeLog
modules/pam_unix/passverify.c

index 19237f55ca2d21cd79c7fd7c6a09e96b5fc72ad2..3a443060cb8e0d40a6a3409d0cd6a0bf6a39bc86 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-08  Thorsten Kukuk  <kukuk@thkukuk.de>
+
+       * modules/pam_unix/passverify.c (verify_pwd_hash): Adjust debug
+       statement.
+
 2008-06-22  Thorsten Kukuk  <kukuk@thkukuk.de>
 
        * modules/pam_unix/unix_chkpwd.c (main): Fix compiling without
index 6d588e63c24397d845af83eefa1d13fb9a34418e..ce5bc450e2f41b257f5bd2eec52819478f374d7d 100644 (file)
@@ -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;