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

mbedtls.c: name space pollution fix, Use 'Curl_'

parent 54465497
No related branches found
No related tags found
No related merge requests found
......@@ -854,14 +854,16 @@ Curl_mbedtls_connect(struct connectdata *conn,
* return 0 error initializing SSL
* return 1 SSL initialized successfully
*/
int mbedtls_init(void)
int Curl_mbedtls_init(void)
{
return Curl_polarsslthreadlock_thread_setup();
}
void mbedtls_cleanup(void)
void Curl_mbedtls_cleanup(void)
{
(void)Curl_polarsslthreadlock_thread_cleanup();
}
#endif /* USE_MBEDTLS */
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