Commit 464bbfd6 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 54465497
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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 */