diff options
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -491,6 +491,11 @@ getpwnamallow(const char *user) | |||
491 | if (pw == NULL) { | 491 | if (pw == NULL) { |
492 | log("Illegal user %.100s from %.100s", | 492 | log("Illegal user %.100s from %.100s", |
493 | user, get_remote_ipaddr()); | 493 | user, get_remote_ipaddr()); |
494 | #ifdef WITH_AIXAUTHENTICATE | ||
495 | loginfailed(user, | ||
496 | get_canonical_hostname(options.verify_reverse_mapping), | ||
497 | "ssh"); | ||
498 | #endif | ||
494 | return (NULL); | 499 | return (NULL); |
495 | } | 500 | } |
496 | if (!allowed_user(pw)) | 501 | if (!allowed_user(pw)) |