mirror of
https://github.com/curl/curl.git
synced 2026-07-24 19:57:25 +03:00
sslgen: avoid compiler error in SSPI builds
This commit is contained in:
parent
3bda1cef92
commit
5439849246
1 changed files with 5 additions and 0 deletions
|
|
@ -555,6 +555,9 @@ void Curl_ssl_free_certinfo(struct SessionHandle *data)
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef USE_WINDOWS_SSPI
|
||||
/* these functions are not used when SSPI is used for NTLM */
|
||||
|
||||
void Curl_ssl_random(struct SessionHandle *data,
|
||||
unsigned char *entropy,
|
||||
size_t length)
|
||||
|
|
@ -569,4 +572,6 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */
|
|||
{
|
||||
curlssl_md5sum(tmp, tmplen, md5sum, md5len);
|
||||
}
|
||||
#endif /* USE_WINDOWS_SSPI */
|
||||
|
||||
#endif /* USE_SSL */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue