|
Lines 232-243
Link Here
|
| 232 |
authctxt->success = 1; |
232 |
authctxt->success = 1; |
| 233 |
} else { |
233 |
} else { |
| 234 |
if (authctxt->failures++ > AUTH_FAIL_MAX) { |
234 |
if (authctxt->failures++ > AUTH_FAIL_MAX) { |
| 235 |
#ifdef WITH_AIXAUTHENTICATE |
|
|
| 236 |
/* XXX: privsep */ |
| 237 |
loginfailed(authctxt->user, |
| 238 |
get_canonical_hostname(options.verify_reverse_mapping), |
| 239 |
"ssh"); |
| 240 |
#endif /* WITH_AIXAUTHENTICATE */ |
| 241 |
packet_disconnect(AUTH_FAIL_MSG, authctxt->user); |
235 |
packet_disconnect(AUTH_FAIL_MSG, authctxt->user); |
| 242 |
} |
236 |
} |
| 243 |
methods = authmethods_get(); |
237 |
methods = authmethods_get(); |