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

This commit is contained in:
Daniel Stenberg 2016-04-07 15:19:35 +02:00
parent 5446549719
commit 464bbfd6f5
1 changed files with 4 additions and 2 deletions

View File

@ -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 */