1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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

This commit is contained in:
Daniel Stenberg 2004-05-05 13:00:03 +00:00
parent 91018f4f24
commit afc1ed60f7

View File

@ -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)