blob: d696e7658d02bb07d0abb11cf92696efab14f0ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-bb,v 1.1 2006/11/22 00:12:34 seb Exp $
--- xfrd/xen_domain.c.orig 2005-08-03 23:57:58.000000000 +0000
+++ xfrd/xen_domain.c
@@ -223,9 +223,11 @@ static int curlsetup(CURL **pcurl, struc
#else
// No progress meter.
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1);
+#if defined(CURLOPT_MUTE)
// Completely quiet.
curl_easy_setopt(curl, CURLOPT_MUTE, 1);
#endif
+#endif
// Set the URL.
curl_easy_setopt(curl, CURLOPT_URL, url);
|