1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 16:18:48 -05:00

my proxytunnel fix accidentally ruined the normal https connects

This commit is contained in:
Daniel Stenberg 2001-11-13 08:34:24 +00:00
parent fc07eb45f4
commit c2479ccb7a

View File

@ -407,6 +407,7 @@ CURLcode Curl_http_connect(struct connectdata *conn)
conn->hostname, conn->remote_port); conn->hostname, conn->remote_port);
if(CURLE_OK != result) if(CURLE_OK != result)
return result; return result;
}
if(conn->protocol & PROT_HTTPS) { if(conn->protocol & PROT_HTTPS) {
/* now, perform the SSL initialization for this socket */ /* now, perform the SSL initialization for this socket */
@ -414,7 +415,6 @@ CURLcode Curl_http_connect(struct connectdata *conn)
if(result) if(result)
return result; return result;
} }
}
if(conn->bits.user_passwd && !data->state.this_is_a_follow) { if(conn->bits.user_passwd && !data->state.this_is_a_follow) {
/* Authorization: is requested, this is not a followed location, get the /* Authorization: is requested, this is not a followed location, get the