From d59dcba37d89c5785c2ec9990e9bcf7ef297e876 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 13 Feb 2023 12:41:52 +0900 Subject: [PATCH] [qw] Update http_progress for recent curl CURLOPT_PROGRESSFUNCTION was deprecated in favor of CURLOPT_XFERINFOFUNCTION (and the parameters for the callback adjusted). I'm not sure why this didn't trigger until now. --- qw/source/cl_http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qw/source/cl_http.c b/qw/source/cl_http.c index b13986cf2..6ee223943 100644 --- a/qw/source/cl_http.c +++ b/qw/source/cl_http.c @@ -47,8 +47,8 @@ static CURL *easy_handle; static CURLM *multi_handle; static int -http_progress (void *clientp, double dltotal, double dlnow, - double ultotal, double uplow) +http_progress (void *clientp, curl_off_t dltotal, curl_off_t dlnow, + curl_off_t ultotal, curl_off_t uplow) { return 0; //non-zero = abort } @@ -87,7 +87,7 @@ CL_HTTP_StartDownload (void) curl_easy_setopt (easy_handle, CURLOPT_NOPROGRESS, 1L); curl_easy_setopt (easy_handle, CURLOPT_NOSIGNAL, 1L); - curl_easy_setopt (easy_handle, CURLOPT_PROGRESSFUNCTION, http_progress); + curl_easy_setopt (easy_handle, CURLOPT_XFERINFOFUNCTION, http_progress); curl_easy_setopt (easy_handle, CURLOPT_WRITEFUNCTION, http_write); curl_easy_setopt (easy_handle, CURLOPT_URL, cls.downloadurl->str);