mirror of
https://github.com/curl/curl.git
synced 2025-02-05 14:30:10 +08:00
mbedtls.c: name space pollution fix, Use 'Curl_'
This commit is contained in:
parent
5446549719
commit
464bbfd6f5
@ -854,14 +854,16 @@ Curl_mbedtls_connect(struct connectdata *conn,
|
|||||||
* return 0 error initializing SSL
|
* return 0 error initializing SSL
|
||||||
* return 1 SSL initialized successfully
|
* return 1 SSL initialized successfully
|
||||||
*/
|
*/
|
||||||
int mbedtls_init(void)
|
int Curl_mbedtls_init(void)
|
||||||
{
|
{
|
||||||
return Curl_polarsslthreadlock_thread_setup();
|
return Curl_polarsslthreadlock_thread_setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void mbedtls_cleanup(void)
|
void Curl_mbedtls_cleanup(void)
|
||||||
{
|
{
|
||||||
(void)Curl_polarsslthreadlock_thread_cleanup();
|
(void)Curl_polarsslthreadlock_thread_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* USE_MBEDTLS */
|
#endif /* USE_MBEDTLS */
|
||||||
|
Loading…
Reference in New Issue
Block a user