projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5446549
)
mbedtls.c: name space pollution fix, Use 'Curl_'
author
Daniel Stenberg
<daniel@haxx.se>
Thu, 7 Apr 2016 13:19:35 +0000
(15:19 +0200)
committer
Daniel Stenberg
<daniel@haxx.se>
Thu, 7 Apr 2016 13:19:35 +0000
(15:19 +0200)
lib/vtls/mbedtls.c
patch
|
blob
|
history
diff --git
a/lib/vtls/mbedtls.c
b/lib/vtls/mbedtls.c
index 2f241706d3bb60b6bc424272cd16331cbf9fd172..77ff326e1eccb70aca0a8f415ae4c5c74abb5a06 100644
(file)
--- a/
lib/vtls/mbedtls.c
+++ b/
lib/vtls/mbedtls.c
@@
-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 */