X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=http.c;h=ee58799ca8cd433218ca7d40946580732a9010e7;hb=bda6eb0da9b4e4e763b531c83cab9fd9f85934ff;hp=ed59b79709b11dc6f6d85e86d75a1a8883799f21;hpb=bf8f2ad5f20b8c911d6a84438faa3c994decf71b;p=git.git diff --git a/http.c b/http.c index ed59b7970..ee58799ca 100644 --- a/http.c +++ b/http.c @@ -24,7 +24,7 @@ static const char *ssl_cainfo = NULL; static long curl_low_speed_limit = -1; static long curl_low_speed_time = -1; static int curl_ftp_no_epsv = 0; -static char *curl_http_proxy = NULL; +static const char *curl_http_proxy = NULL; static struct curl_slist *pragma_header; @@ -149,11 +149,8 @@ static int http_options(const char *var, const char *value, void *cb) return 0; } if (!strcmp("http.proxy", var)) { - if (curl_http_proxy == NULL) { - if (!value) - return config_error_nonbool(var); - curl_http_proxy = xstrdup(value); - } + if (curl_http_proxy == NULL) + return git_config_string(&curl_http_proxy, var, value); return 0; } @@ -309,7 +306,7 @@ void http_cleanup(void) pragma_header = NULL; if (curl_http_proxy) { - free(curl_http_proxy); + free((void *)curl_http_proxy); curl_http_proxy = NULL; } }