diff options
author | Damien Miller <djm@mindrot.org> | 2019-01-20 04:55:27 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-20 04:55:27 +0100 |
commit | 9b655dc9c9a353f0a527f0c6c43a5e35653c9503 (patch) | |
tree | 78b3512ffa1a9e5b8d954aca6fb45a0a3045504b /auth.c | |
parent | remove PAM dependencies on old packet API (diff) | |
download | openssh-9b655dc9c9a353f0a527f0c6c43a5e35653c9503.tar.xz openssh-9b655dc9c9a353f0a527f0c6c43a5e35653c9503.zip |
last bits of old packet API / active_state global
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -367,7 +367,7 @@ auth_log(struct ssh *ssh, int authenticated, int partial, #endif #ifdef SSH_AUDIT_EVENTS if (authenticated == 0 && !authctxt->postponed) - audit_event(audit_classify_auth(method)); + audit_event(ssh, audit_classify_auth(method)); #endif } @@ -605,7 +605,7 @@ getpwnamallow(struct ssh *ssh, const char *user) auth_get_canonical_hostname(ssh, options.use_dns), "ssh"); #endif #ifdef SSH_AUDIT_EVENTS - audit_event(SSH_INVALID_USER); + audit_event(ssh, SSH_INVALID_USER); #endif /* SSH_AUDIT_EVENTS */ return (NULL); } |