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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)