git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Allow any HTTP authentication scheme, not only basic
@ 2009-03-31 17:31 Martin Storsjo
  2009-03-31 18:54 ` Martin Storsjo
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Storsjo @ 2009-03-31 17:31 UTC (permalink / raw)
  To: git

Signed-off-by: Martin Storsjo <martin@martin.st>
---
 http.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/http.c b/http.c
index 2fc55d6..7cb53e8 100644
--- a/http.c
+++ b/http.c
@@ -165,6 +165,7 @@ static CURL *get_curl_handle(void)
 #if LIBCURL_VERSION_NUM >= 0x070907
 	curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
 #endif
+	curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
 
 	init_curl_http_auth(result);
 
-- 
1.6.0.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-04-01 15:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-31 17:31 [PATCH] Allow any HTTP authentication scheme, not only basic Martin Storsjo
2009-03-31 18:54 ` Martin Storsjo
2009-03-31 19:04   ` Johannes Schindelin
2009-04-01 15:06     ` Martin Storsjö

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).