]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
doh: remove Curl_ prefix from static functions
authorDaniel Stenberg <daniel@haxx.se>
Wed, 13 Jan 2021 10:46:14 +0000 (11:46 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 14 Jan 2021 07:09:09 +0000 (08:09 +0100)
lib/doh.c

index 1660fb4021f0d6d1bbbc6dafbced97abf37afb9b..c6377fef4c05f6de71963cf9bd15c269155923ca 100644 (file)
--- a/lib/doh.c
+++ b/lib/doh.c
@@ -187,7 +187,7 @@ doh_write_cb(const void *contents, size_t size, size_t nmemb, void *userp)
 }
 
 /* called from multi.c when this DOH transfer is complete */
-static int Curl_doh_done(struct Curl_easy *doh, CURLcode result)
+static int doh_done(struct Curl_easy *doh, CURLcode result)
 {
   struct Curl_easy *data = doh->set.dohfor;
   /* so one of the DOH request done for the 'data' transfer is now complete! */
@@ -354,7 +354,7 @@ static CURLcode dohprobe(struct Curl_easy *data,
         data->set.str[STRING_SSL_EC_CURVES]);
     }
 
-    doh->set.fmultidone = Curl_doh_done;
+    doh->set.fmultidone = doh_done;
     doh->set.dohfor = data; /* identify for which transfer this is done */
     p->easy = doh;