mbedtls.c: name space pollution fix, Use 'Curl_'
authorDaniel Stenberg <daniel@haxx.se>
Thu, 7 Apr 2016 13:19:35 +0000 (15:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 7 Apr 2016 13:19:35 +0000 (15:19 +0200)
lib/vtls/mbedtls.c

index 2f241706d3bb60b6bc424272cd16331cbf9fd172..77ff326e1eccb70aca0a8f415ae4c5c74abb5a06 100644 (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 */