]> andersk Git - openssh.git/blobdiff - auth.c
- (bal) AIX does not log login attempts for unknown users (bug #432).
[openssh.git] / auth.c
diff --git a/auth.c b/auth.c
index 021174f975fdbedb49309ad8e9c683df3d8162ff..ee001283f78c257dbfdfdf0bfd5dd40e1f7bb0ed 100644 (file)
--- a/auth.c
+++ b/auth.c
@@ -491,6 +491,11 @@ getpwnamallow(const char *user)
        if (pw == NULL) {
                log("Illegal user %.100s from %.100s",
                    user, get_remote_ipaddr());
+#ifdef WITH_AIXAUTHENTICATE
+               loginfailed(user,
+                   get_canonical_hostname(options.verify_reverse_mapping),
+                   "ssh");
+#endif
                return (NULL);
        }
        if (!allowed_user(pw))
This page took 0.030406 seconds and 4 git commands to generate.