Loading lib/http.c +5 −4 Original line number Diff line number Diff line Loading @@ -1076,7 +1076,7 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, else if(2 == sscanf(line_start, "HTTP/1.%d %d", &subversion, &k->httpcode)) { /* store the HTTP code */ /* store the HTTP code from the proxy */ data->info.httpproxycode = k->httpcode; } /* put back the letter we blanked out before */ Loading @@ -1094,8 +1094,9 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, if(error) return CURLE_RECV_ERROR; /* Deal with the possibly already received authenticate headers. 'newurl' is set to a new URL if we must loop. */ if(data->info.httpproxycode != 200) /* Deal with the possibly already received authenticate headers. 'newurl' is set to a new URL if we must loop. */ Curl_http_auth_act(conn); } while(conn->newurl); Loading Loading
lib/http.c +5 −4 Original line number Diff line number Diff line Loading @@ -1076,7 +1076,7 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, else if(2 == sscanf(line_start, "HTTP/1.%d %d", &subversion, &k->httpcode)) { /* store the HTTP code */ /* store the HTTP code from the proxy */ data->info.httpproxycode = k->httpcode; } /* put back the letter we blanked out before */ Loading @@ -1094,8 +1094,9 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, if(error) return CURLE_RECV_ERROR; /* Deal with the possibly already received authenticate headers. 'newurl' is set to a new URL if we must loop. */ if(data->info.httpproxycode != 200) /* Deal with the possibly already received authenticate headers. 'newurl' is set to a new URL if we must loop. */ Curl_http_auth_act(conn); } while(conn->newurl); Loading