summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth1.c b/auth1.c
index aeb5d8cb9..d08928455 100644
--- a/auth1.c
+++ b/auth1.c
@@ -249,8 +249,8 @@ do_authloop(Authctxt *authctxt)
249 if (authenticated && authctxt->pw->pw_uid == 0 && 249 if (authenticated && authctxt->pw->pw_uid == 0 &&
250 !auth_root_allowed(get_authname(type))) { 250 !auth_root_allowed(get_authname(type))) {
251 authenticated = 0; 251 authenticated = 0;
252# ifdef AUDIT_EVENTS 252# ifdef SSH_AUDIT_EVENTS
253 PRIVSEP(audit_event(LOGIN_ROOT_DENIED)); 253 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
254# endif 254# endif
255 } 255 }
256#endif 256#endif
@@ -288,8 +288,8 @@ do_authloop(Authctxt *authctxt)
288 return; 288 return;
289 289
290 if (authctxt->failures++ > options.max_authtries) { 290 if (authctxt->failures++ > options.max_authtries) {
291#ifdef AUDIT_EVENTS 291#ifdef SSH_AUDIT_EVENTS
292 PRIVSEP(audit_event(LOGIN_EXCEED_MAXTRIES)); 292 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
293#endif 293#endif
294 packet_disconnect(AUTH_FAIL_MSG, authctxt->user); 294 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
295 } 295 }