diff options
author | Damien Miller <djm@mindrot.org> | 2019-01-20 00:22:18 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-20 00:22:18 +0100 |
commit | 3f0786bbe73609ac96e5a0d91425ee21129f8e04 (patch) | |
tree | be9ab562ad56a3948fee1f27fc9a13e4700b3661 /monitor_wrap.h | |
parent | remove vestiges of old packet API from loginrec.c (diff) | |
download | openssh-3f0786bbe73609ac96e5a0d91425ee21129f8e04.tar.xz openssh-3f0786bbe73609ac96e5a0d91425ee21129f8e04.zip |
remove PAM dependencies on old packet API
Requires some caching of values, because the PAM code isn't
always called with packet context.
Diffstat (limited to 'monitor_wrap.h')
-rw-r--r-- | monitor_wrap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor_wrap.h b/monitor_wrap.h index 2b7052202..c7e0c91dd 100644 --- a/monitor_wrap.h +++ b/monitor_wrap.h @@ -66,7 +66,7 @@ OM_uint32 mm_ssh_gssapi_checkmic(Gssctxt *, gss_buffer_t, gss_buffer_t); #endif #ifdef USE_PAM -void mm_start_pam(struct Authctxt *); +void mm_start_pam(struct ssh *ssh); u_int mm_do_pam_account(void); void *mm_sshpam_init_ctx(struct Authctxt *); int mm_sshpam_query(void *, char **, char **, u_int *, char ***, u_int **); |