diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-01-13 11:46:14 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-01-14 08:09:09 +0100 |
commit | 476e1339ef1a90358a90332ba10d1a90bdf7a681 (patch) | |
tree | 3323d268c4b47f140cc3b1cfa929319ad2b4fc3e /lib/doh.c | |
parent | afb150499f057e940d829516ce5bad6e19223e88 (diff) | |
download | curl-476e1339ef1a90358a90332ba10d1a90bdf7a681.tar.gz |
doh: remove Curl_ prefix from static functions
Diffstat (limited to 'lib/doh.c')
-rw-r--r-- | lib/doh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |