aboutsummaryrefslogtreecommitdiffstats
path: root/keyserver/curl-shim.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--keyserver/curl-shim.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/keyserver/curl-shim.c b/keyserver/curl-shim.c
index dfa3d1e3c..0c8bfdc9b 100644
--- a/keyserver/curl-shim.c
+++ b/keyserver/curl-shim.c
@@ -78,6 +78,7 @@ handle_error(CURL *curl,CURLcode err,const char *str)
CURLcode
curl_global_init(long flags)
{
+ (void)flags;
return CURLE_OK;
}
@@ -340,6 +341,8 @@ curl_version_info(int type)
static curl_version_info_data data;
static const char *protocols[]={"http",NULL};
+ (void)type;
+
data.protocols=protocols;
return &data;