diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-16 13:56:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-16 13:56:42 -0700 |
commit | 68e12d7d97e1c1a853ac4c603b06afa051cf1276 (patch) | |
tree | 9133b44f5fb20c6d78108162c1bfbf81b93a74c8 /http.c | |
parent | 8e87cbc740493f8b0619642a680943df04742714 (diff) | |
parent | 8e27391a5fdc9194c4ed3ed6c64ec4750a1a08b5 (diff) | |
download | git-68e12d7d97e1c1a853ac4c603b06afa051cf1276.tar.gz |
Merge branch 'jt/http-base-url-update-upon-redirect' into maint
When a redirected http transport gets an error during the
redirected request, we ignored the error we got from the server,
and ended up giving a not-so-useful error message.
* jt/http-base-url-update-upon-redirect:
http: attempt updating base URL only if no error
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1769,6 +1769,9 @@ static int http_request_reauth(const char *url, { int ret = http_request(url, result, target, options); + if (ret != HTTP_OK && ret != HTTP_REAUTH) + return ret; + if (options && options->effective_url && options->base_url) { if (update_url_from_redirect(options->base_url, url, options->effective_url)) { |