Re: [PATCH (try 3)] http.c: 'use_git_config_string' on configuration options.
From: Christian Couder <hidden>
Date: 2016-06-15 22:44:30
On Sat, 19 Apr 2008 19:39:21 -0300 Tordek [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Signed-off-by: Guillermo O. Freschi <redacted> --- My apologies, I had made a mistake on the previous attempt. http.c | 36 ++++++++++++------------------------ 1 files changed, 12 insertions(+), 24 deletions(-)diff --git a/http.c b/http.c index 256a5f1..8ae6432 100644 --- a/http.c +++ b/http.c@@ -13,14 +13,14 @@ static CURL *curl_default; char curl_errorstr[CURL_ERROR_SIZE];
^ There is one spurious whitespace before "char" in the above line.
static int curl_ssl_verify = -1;
^ In the above line too.
-static char *ssl_cert = NULL; +static const char *ssl_cert = NULL;
These 2 lines above are fine.
#if LIBCURL_VERSION_NUM >= 0x070902
^ Here again there is one spurious whitespace. [...]
quoted hunk ↗ jump to hunk
static long curl_low_speed_time = -1; static int curl_ftp_no_epsv = 0;@@ -100,39 +100,27 @@ static int http_options(const char *var, constchar *value)
"char *value)" should have stayed on the same line as "http_options(const char *var, const ". Please try to send yourself your own patch and try to apply it using "git am", before you send it to the list. Thanks, Christian.