summaryrefslogtreecommitdiffstats
path: root/auth1.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 /auth1.c
parent5d35a2f5828cfb0a8579228d80e8bec60c8f8c64 (diff)
- (bal) Failed password attempts don't increment counter on AIX. Bug #145
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/auth1.c b/auth1.c
index 2ebc8d03..769fa306 100644
--- a/auth1.c
+++ b/auth1.c
@@ -323,12 +323,6 @@ do_authloop(Authctxt *authctxt)
return;
if (authctxt->failures++ > AUTH_FAIL_MAX) {
-#ifdef WITH_AIXAUTHENTICATE
- /* XXX: privsep */
- loginfailed(authctxt->user,
- get_canonical_hostname(options.verify_reverse_mapping),
- "ssh");
-#endif /* WITH_AIXAUTHENTICATE */
packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
}