From af73e17fcc2e80be3b2b1af11b9a417fdec9fec7 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Wed, 19 Feb 2020 01:13:58 -0700 Subject: * Correct the NTLM authenticator to make sure Alpine compiles when support for the NTLM authenticator is compiled into Alpine. --- imap/src/c-client/auth_ntl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'imap/src/c-client/auth_ntl.c') 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 -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 { -- cgit v1.2.3-70-g09d2