From 550862f41abecc44714986f7bfec1267e42d6fcd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 22 Apr 2004 21:27:32 +0000 Subject: [PATCH] missing brace --- lib/http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/http.c b/lib/http.c index 0922b9eda..0c81752d3 100644 --- a/lib/http.c +++ b/lib/http.c @@ -399,6 +399,7 @@ CURLcode Curl_http_auth(struct connectdata *conn, if (neg == 0) { conn->newurl = strdup(data->change.url); data->state.authproblem = (conn->newurl == NULL); + } else { infof(data, "Authentication problem. Ignoring this.\n"); data->state.authproblem = TRUE;