From 28ff8babada4095f5b74818e0018a0fbda58686e Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 25 Oct 2014 14:23:40 +0100 Subject: ntlm: Changed handles to be dynamic like other SSPI handles Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. --- lib/urldata.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/urldata.h') diff --git a/lib/urldata.h b/lib/urldata.h index 5d1366737..4146b8b72 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -435,13 +435,12 @@ struct kerberos5data { struct ntlmdata { curlntlm state; #ifdef USE_WINDOWS_SSPI - CredHandle credentials; - CtxtHandle context; + CredHandle *credentials; + CtxtHandle *context; SEC_WINNT_AUTH_IDENTITY identity; SEC_WINNT_AUTH_IDENTITY *p_identity; size_t max_token_length; BYTE *output_token; - int has_handles; BYTE *input_token; size_t input_token_len; #else -- cgit v1.2.3