aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-10-25 14:23:40 +0100
committerSteve Holme <steve_holme@hotmail.com>2014-10-25 14:16:06 +0100
commit28ff8babada4095f5b74818e0018a0fbda58686e (patch)
tree107e0d62088f0a617d94887a7988f5d81c91d308 /lib/urldata.h
parentf9f212fb9339dae67360d58224ef264edb1cec15 (diff)
ntlm: Changed handles to be dynamic like other SSPI handles
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h5
1 files changed, 2 insertions, 3 deletions
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