summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-04 00:27:21 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-04 00:27:21 +0000
commite06eb68226061e1b6e369f4aebe3b3c07ce1f2c7 (patch)
tree6366f8c536813f07ac876ab0edc644ef7ae293e7 /auth.c
parent5d35a2f5828cfb0a8579228d80e8bec60c8f8c64 (diff)
- (bal) Failed password attempts don't increment counter on AIX. Bug #145
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/auth.c b/auth.c
index 066b50d6b..693826a93 100644
--- a/auth.c
+++ b/auth.c
@@ -256,6 +256,14 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
256 get_remote_ipaddr(), 256 get_remote_ipaddr(),
257 get_remote_port(), 257 get_remote_port(),
258 info); 258 info);
259
260#ifdef WITH_AIXAUTHENTICATE
261 if (authenticated == 0 && strcmp(method, "password") == 0)
262 loginfailed(authctxt->user,
263 get_canonical_hostname(options.verify_reverse_mapping),
264 "ssh");
265#endif /* WITH_AIXAUTHENTICATE */
266
259} 267}
260 268
261/* 269/*