]> xenbits.xensource.com Git - libvirt.git/commitdiff
ch: use CURLOPT_UPLOAD instead of CURLOPT_PUT
authorDaniel P. Berrangé <berrange@redhat.com>
Wed, 18 Jan 2023 09:45:52 +0000 (09:45 +0000)
committerDaniel P. Berrangé <berrange@redhat.com>
Wed, 18 Jan 2023 13:45:56 +0000 (13:45 +0000)
The CURLOPT_PUT constant causes a deprecation warning when compiling on
Alpine Edge.  The docs indicate it is deprecated since 7.2.1

  https://curl.se/libcurl/c/CURLOPT_PUT.html

Since 7.87 the deprecation is now exposed at build time via a compiler
warning.

We already use CURLOPT_UPLOAD in the ESX driver, so this brings the CH
driver into line.

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/ch/ch_monitor.c

index 8d8654332f39fca8cd1590cf7ea83ef10f3da8bf..7b8f0a8077228b8c82f4672daf3adc9198cc447b 100644 (file)
@@ -660,7 +660,7 @@ virCHMonitorPutNoContent(virCHMonitor *mon, const char *endpoint)
 
     curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath);
     curl_easy_setopt(mon->handle, CURLOPT_URL, url);
-    curl_easy_setopt(mon->handle, CURLOPT_PUT, true);
+    curl_easy_setopt(mon->handle, CURLOPT_UPLOAD, 1L);
     curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, NULL);
 
     responseCode = virCHMonitorCurlPerform(mon->handle);