diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-02-19 01:13:58 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-02-19 01:13:58 -0700 |
commit | af73e17fcc2e80be3b2b1af11b9a417fdec9fec7 (patch) | |
tree | d9d8c3adeab3cb53b232e58bd11607524d2770e1 /imap | |
parent | cd53b13aa5acaecb776c82cd6566122a6893240d (diff) | |
download | alpine-af73e17fcc2e80be3b2b1af11b9a417fdec9fec7.tar.xz |
* Correct the NTLM authenticator to make sure Alpine compiles when
support for the NTLM authenticator is compiled into Alpine.
Diffstat (limited to 'imap')
-rw-r--r-- | imap/src/c-client/auth_ntl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/imap/src/c-client/auth_ntl.c b/imap/src/c-client/auth_ntl.c index 481ca0f8..7579b8fb 100644 --- a/imap/src/c-client/auth_ntl.c +++ b/imap/src/c-client/auth_ntl.c @@ -24,7 +24,7 @@ #include <ntlm.h> -long auth_ntlm_client (authchallenge_t challenger,authrespond_t responder, +long auth_ntlm_client (authchallenge_t challenger,authrespond_t responder,char *base, char *service,NETMBX *mb,void *stream, unsigned long port, unsigned long *trial,char *user); @@ -48,7 +48,7 @@ AUTHENTICATOR auth_ntl = { /* secure, has full auth, hidden */ * Returns: T if success, NIL otherwise, number of trials incremented if retry */ -long auth_ntlm_client (authchallenge_t challenger, authrespond_t responder, +long auth_ntlm_client (authchallenge_t challenger, authrespond_t responder,char *base, char *service, NETMBX *mb, void *stream, unsigned long port, unsigned long *trial, char *user) { @@ -89,13 +89,13 @@ long auth_ntlm_client (authchallenge_t challenger, authrespond_t responder, } buildSmbNtlmAuthRequest (&request, user, NULL); /* send a negotiate message */ - if ((*responder) (stream, (void *) &request, SmbLength (&request)) && + if ((*responder) (stream, NIL, (void *) &request, SmbLength (&request)) && (challenge = (*challenger) (stream, &clen))) { /* interpret the challenge message */ buildSmbNtlmAuthResponse (challenge, &response, user, pass); fs_give ((void **) &challenge); /* send a response message */ - if ((*responder) (stream, (void *) &response, SmbLength (&response))) { + if ((*responder) (stream, NIL, (void *) &response, SmbLength (&response))) { if (challenge = (*challenger) (stream, &clen)) fs_give ((void **) &challenge); else { |