summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-02-08 21:52:47 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-02-08 21:52:47 +1100
commit2e0cf0dca20e56eb5d95a80ba0004769c5bc4ba7 (patch)
treed03f7560b26c36b6afd48ffb962775b6424fee72 /auth2.c
parentb4d3012d2e9a0eb53c56565108c8278e45cefc77 (diff)
- (dtucker) [audit.c audit.h auth.c auth1.c auth2.c loginrec.c monitor.c
monitor_wrap.c monitor_wrap.h session.c sshd.c]: Prepend all of the audit defines and enums with SSH_ to prevent namespace collisions on some platforms (eg AIX).
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/auth2.c b/auth2.c
index 2727e0ff5..2265d311e 100644
--- a/auth2.c
+++ b/auth2.c
@@ -167,8 +167,8 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt)
167 if (options.use_pam) 167 if (options.use_pam)
168 PRIVSEP(start_pam(authctxt)); 168 PRIVSEP(start_pam(authctxt));
169#endif 169#endif
170#ifdef AUDIT_EVENTS 170#ifdef SSH_AUDIT_EVENTS
171 PRIVSEP(audit_event(INVALID_USER)); 171 PRIVSEP(audit_event(SSH_INVALID_USER));
172#endif 172#endif
173 } 173 }
174 setproctitle("%s%s", authctxt->valid ? user : "unknown", 174 setproctitle("%s%s", authctxt->valid ? user : "unknown",
@@ -219,8 +219,8 @@ userauth_finish(Authctxt *authctxt, int authenticated, char *method)
219 if (authenticated && authctxt->pw->pw_uid == 0 && 219 if (authenticated && authctxt->pw->pw_uid == 0 &&
220 !auth_root_allowed(method)) { 220 !auth_root_allowed(method)) {
221 authenticated = 0; 221 authenticated = 0;
222#ifdef AUDIT_EVENTS 222#ifdef SSH_AUDIT_EVENTS
223 PRIVSEP(audit_event(LOGIN_ROOT_DENIED)); 223 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
224#endif 224#endif
225 } 225 }
226 226
@@ -263,8 +263,8 @@ userauth_finish(Authctxt *authctxt, int authenticated, char *method)
263 authctxt->success = 1; 263 authctxt->success = 1;
264 } else { 264 } else {
265 if (authctxt->failures++ > options.max_authtries) { 265 if (authctxt->failures++ > options.max_authtries) {
266#ifdef AUDIT_EVENTS 266#ifdef SSH_AUDIT_EVENTS
267 PRIVSEP(audit_event(LOGIN_EXCEED_MAXTRIES)); 267 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
268#endif 268#endif
269 packet_disconnect(AUTH_FAIL_MSG, authctxt->user); 269 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
270 } 270 }