summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 391aa14d3..8aa200c91 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -266,7 +266,7 @@ struct fetch * fetch_start(char *url, char *referer,
}
/* HTTP auth */
- code = curl_easy_setopt(fetch->curl_handle, CURLOPT_HTTPAUTH, (long)CURLAUTH_BASIC);
+ code = curl_easy_setopt(fetch->curl_handle, CURLOPT_HTTPAUTH, (long)CURLAUTH_ANY);
assert(code == CURLE_OK);
if ((li=login_list_get(url)) != NULL) {