]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http: fix "unused parameter ‘conn’" warning
authorDaniel Stenberg <daniel@haxx.se>
Wed, 16 Feb 2022 22:04:07 +0000 (23:04 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 17 Feb 2022 06:55:17 +0000 (07:55 +0100)
Follow-up from 7d600ad1c395

Spotted on appveyor

Closes #8465

lib/http.c

index e9e5bded5ff99ed30c19357160c39342c137d239..799d4fb4577f8e1479c03fbdecb0740c90a05e51 100644 (file)
@@ -666,6 +666,7 @@ output_auth_headers(struct Curl_easy *data,
 {
   const char *auth = NULL;
   CURLcode result = CURLE_OK;
+  (void)conn;
 
 #ifdef CURL_DISABLE_CRYPTO_AUTH
   (void)request;