mirror of
https://github.com/curl/curl.git
synced 2026-07-08 00:17:17 +03:00
initiate variables properly to default to no auth for server and proxy
This commit is contained in:
parent
91018f4f24
commit
afc1ed60f7
1 changed files with 2 additions and 2 deletions
|
|
@ -207,8 +207,8 @@ static bool pickoneauth(struct auth *pick)
|
|||
CURLcode Curl_http_auth_act(struct connectdata *conn)
|
||||
{
|
||||
struct SessionHandle *data = conn->data;
|
||||
bool pickhost;
|
||||
bool pickproxy;
|
||||
bool pickhost = FALSE;
|
||||
bool pickproxy = FALSE;
|
||||
CURLcode code = CURLE_OK;
|
||||
|
||||
if(data->state.authproblem)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue