my proxytunnel fix accidentally ruined the normal https connects
This commit is contained in:
parent
fc07eb45f4
commit
c2479ccb7a
12
lib/http.c
12
lib/http.c
@ -407,13 +407,13 @@ CURLcode Curl_http_connect(struct connectdata *conn)
|
||||
conn->hostname, conn->remote_port);
|
||||
if(CURLE_OK != result)
|
||||
return result;
|
||||
}
|
||||
|
||||
if(conn->protocol & PROT_HTTPS) {
|
||||
/* now, perform the SSL initialization for this socket */
|
||||
result = Curl_SSLConnect(conn);
|
||||
if(result)
|
||||
return result;
|
||||
}
|
||||
if(conn->protocol & PROT_HTTPS) {
|
||||
/* now, perform the SSL initialization for this socket */
|
||||
result = Curl_SSLConnect(conn);
|
||||
if(result)
|
||||
return result;
|
||||
}
|
||||
|
||||
if(conn->bits.user_passwd && !data->state.this_is_a_follow) {
|
||||
|
Loading…
Reference in New Issue
Block a user