mirror of
https://github.com/curl/curl.git
synced 2026-05-08 11:27:29 +03:00
vtls: fix warnings with --disable-crypto-auth
When CURL_DISABLE_CRYPTO_AUTH is defined, Curl_none_md5sum's parameters are not used.
This commit is contained in:
parent
7f1140c8bf
commit
202189ff2c
1 changed files with 4 additions and 0 deletions
|
|
@ -1080,6 +1080,10 @@ CURLcode Curl_none_md5sum(unsigned char *input UNUSED_PARAM,
|
|||
unsigned char *md5sum UNUSED_PARAM,
|
||||
size_t md5len UNUSED_PARAM)
|
||||
{
|
||||
(void)input;
|
||||
(void)inputlen;
|
||||
(void)md5sum;
|
||||
(void)md5len;
|
||||
return CURLE_NOT_BUILT_IN;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue