diff options
| author | Sergey Ogryzkov <Sergey.Ogryzkov@kaspersky.com> | 2019-05-31 18:40:03 +0300 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2019-06-02 23:11:33 +0200 | 
| commit | f9b60fb6f85b83bf450eb4c424642860ed884a85 (patch) | |
| tree | ace4c2a0d1493e9580cb94cf121f637b18376d3a /lib | |
| parent | b6b8f3a3845415be9ab4cde0092f7ce925091bd1 (diff) | |
NTLM: reset proxy "multipass" state when CONNECT request is done
Closes #3972
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/http_proxy.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index d7ed11761..ba67b861b 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -632,6 +632,7 @@ static CURLcode CONNECT(struct connectdata *conn,    conn->allocptr.proxyuserpwd = NULL;    data->state.authproxy.done = TRUE; +  data->state.authproxy.multipass = FALSE;    infof(data, "Proxy replied %d to CONNECT request\n",          data->info.httpproxycode);  | 
