From: Sergey Ogryzkov Date: Fri, 31 May 2019 15:40:03 +0000 (+0300) Subject: NTLM: reset proxy "multipass" state when CONNECT request is done X-Git-Tag: curl-7_65_1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9b60fb6f85b83bf450eb4c424642860ed884a85;p=thirdparty%2Fcurl.git NTLM: reset proxy "multipass" state when CONNECT request is done Closes #3972 --- diff --git a/lib/http_proxy.c b/lib/http_proxy.c index d7ed11761f..ba67b861bd 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);