aboutsummaryrefslogtreecommitdiffstats
path: root/http-push.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-06-07 10:46:50 -0700
committerJunio C Hamano <gitster@pobox.com>2025-06-07 10:46:50 -0700
commit7558d894231744aa0cb0ea95a0b5b177b3f106a0 (patch)
treee45881c6b629daaf777930b40ecaae4331428d7a /http-push.c
parentc20471e4657777e98bb8431536bc9797ce0a5a2d (diff)
parent4558c8f84b2f8d3ba1483727bcb49935ae8ff595 (diff)
downloadgit-7558d894231744aa0cb0ea95a0b5b177b3f106a0.tar.gz
Merge branch 'jk/curl-easy-setopt-typefix'
Adjust to newer version of libcURL. * jk/curl-easy-setopt-typefix: curl: fix symbolic constant typechecks with curl_easy_setopt() curl: fix integer variable typechecks with curl_easy_setopt() curl: fix integer constant typechecks with curl_easy_setopt()
Diffstat (limited to 'http-push.c')
-rw-r--r--http-push.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c
index f9e67cabd4..591e46ab26 100644
--- a/http-push.c
+++ b/http-push.c
@@ -195,7 +195,7 @@ static char *xml_entities(const char *s)
static void curl_setup_http_get(CURL *curl, const char *url,
const char *custom_req)
{
- curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
+ curl_easy_setopt(curl, CURLOPT_HTTPGET, 1L);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite_null);