Skip to content
Snippets Groups Projects
Commit afc1ed60 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

initiate variables properly to default to no auth for server and proxy

parent 91018f4f
No related branches found
No related tags found
No related merge requests found
...@@ -207,8 +207,8 @@ static bool pickoneauth(struct auth *pick) ...@@ -207,8 +207,8 @@ static bool pickoneauth(struct auth *pick)
CURLcode Curl_http_auth_act(struct connectdata *conn) CURLcode Curl_http_auth_act(struct connectdata *conn)
{ {
struct SessionHandle *data = conn->data; struct SessionHandle *data = conn->data;
bool pickhost; bool pickhost = FALSE;
bool pickproxy; bool pickproxy = FALSE;
CURLcode code = CURLE_OK; CURLcode code = CURLE_OK;
if(data->state.authproblem) if(data->state.authproblem)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment