From afc1ed60f7aa36dce4335f7ca287677f0026c422 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 5 May 2004 13:00:03 +0000 Subject: [PATCH] initiate variables properly to default to no auth for server and proxy --- lib/http.c | 4 ++-- 1 file 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)