mirror of
https://github.com/curl/curl.git
synced 2026-07-31 23:58:04 +03:00
http_ntlm: Move the NTLM state out of the ntlmdata structure
Given that this member variable is not used by the SASL based protocols there is no need to have it here.
This commit is contained in:
parent
0c73adfad3
commit
85bef18ca1
6 changed files with 34 additions and 28 deletions
|
|
@ -588,8 +588,8 @@ static CURLcode multi_done(struct Curl_easy *data,
|
|||
|
||||
if((data->set.reuse_forbid
|
||||
#if defined(USE_NTLM)
|
||||
&& !(conn->ntlm.state == NTLMSTATE_TYPE2 ||
|
||||
conn->proxyntlm.state == NTLMSTATE_TYPE2)
|
||||
&& !(conn->http_ntlm_state == NTLMSTATE_TYPE2 ||
|
||||
conn->proxy_ntlm_state == NTLMSTATE_TYPE2)
|
||||
#endif
|
||||
#if defined(USE_SPNEGO)
|
||||
&& !(conn->negotiate.state == GSS_AUTHRECV ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue