aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-05 13:00:03 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-05 13:00:03 +0000
commitafc1ed60f7aa36dce4335f7ca287677f0026c422 (patch)
treee4af589af68f6ef3e407a38930e7abd048a36643
parent91018f4f24eb94d006b1b3a40b7f6e82453b0552 (diff)
initiate variables properly to default to no auth for server and proxy
-rw-r--r--lib/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http.c b/lib/http.c
index b86f031d3..5e663cb7d 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -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)