Eric Sunshine [off-list ref] writes:
quoted
@@ -284,6 +285,9 @@ static void process_curl_messages(void)
static int http_options(const char *var, const char *value, void *cb)
{
+ if (!strcmp("http.version",var)) {
Style: space after comma
quoted
+ return git_config_string(&curl_http_version, var, value);
+ }
@@ -806,6 +834,16 @@ static CURL *get_curl_handle(void)
+ if (curl_http_version) {
+ long opt;
+ if (!get_curl_http_version_opt(curl_http_version, &opt)) {
+ /* Set request use http version */
+ curl_easy_setopt(result, CURLOPT_HTTP_VERSION,opt);
Style: space after comma
quoted
+ }
+ }
Thanks, both. This is almost done, I think.