diff options
Diffstat (limited to 'modules/pam_unix')
-rw-r--r-- | modules/pam_unix/support.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/pam_unix/support.c b/modules/pam_unix/support.c index 84114884..a9df0c5f 100644 --- a/modules/pam_unix/support.c +++ b/modules/pam_unix/support.c @@ -699,7 +699,10 @@ int _unix_verify_password(pam_handle_t * pamh, const char *name } else { D(("user's record unavailable")); p = NULL; - retval = PAM_AUTHINFO_UNAVAIL; + if (pwd == NULL) + retval = PAM_USER_UNKNOWN; + else + retval = PAM_AUTHINFO_UNAVAIL; if (on(UNIX_AUDIT, ctrl)) { /* this might be a typo and the user has given a password instead of a username. Careful with this. */ |