summaryrefslogtreecommitdiff
path: root/http-fetch.c
diff options
context:
space:
mode:
authorJosef Weidendorfer <Josef.Weidendorfer@gmx.de>2005-11-10 13:12:19 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-11-10 23:57:56 (GMT)
commit66c9ec25553ce7332c46e2017b9c4d7c26310fff (patch)
treee47910c09e5fdc71577079832d2fe852696b781a /http-fetch.c
parentad7db62113368279a1b6994790bf30925fabea33 (diff)
downloadgit-66c9ec25553ce7332c46e2017b9c4d7c26310fff.zip
git-66c9ec25553ce7332c46e2017b9c4d7c26310fff.tar.gz
git-66c9ec25553ce7332c46e2017b9c4d7c26310fff.tar.bz2
Let git-clone/git-fetch follow HTTP redirections
Otherwise, git-clone silently failed to clone a remote repository where redirections (ie. a response with a "Location" header line) are used. This includes the fixes from Nick Hengeveld. Signed-off-by: Josef Weidendorfer <Josef.Weidendorfer@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http-fetch.c')
-rw-r--r--http-fetch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/http-fetch.c b/http-fetch.c
index 88b74b4..99921cc 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -269,6 +269,8 @@ static CURL* get_curl_handle(void)
curl_low_speed_time);
}
+ curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
+
return result;
}