Skip to content
Snippets Groups Projects
Commit 54398492 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

sslgen: avoid compiler error in SSPI builds

parent 3bda1cef
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment