This commit is contained in:
Anthony Minessale 2011-05-13 16:29:48 -05:00
parent 1d18b58b4d
commit 082cb7154e

View File

@ -32,7 +32,7 @@
#define __SWITCH_CURL_H #define __SWITCH_CURL_H
#include <curl/curl.h> #include <curl/curl.h>
#include "switch_ssl.h" #include <switch_ssl.h>
static inline void switch_curl_init(void) static inline void switch_curl_init(void)
{ {
@ -41,7 +41,7 @@ static inline void switch_curl_init(void)
if (curl_count == 0) { if (curl_count == 0) {
curl_global_init(CURL_GLOBAL_ALL); curl_global_init(CURL_GLOBAL_ALL);
#if defined(HAVE_OPENSSL) #if defined(HAVE_OPENSSL)
switch_curl_init_ssl_locks(); switch_ssl_init_ssl_locks();
#endif #endif
} }
@ -58,7 +58,7 @@ static inline void switch_curl_destroy()
if (curl_count == 0) { if (curl_count == 0) {
#if defined(HAVE_OPENSSL) #if defined(HAVE_OPENSSL)
switch_curl_destroy_ssl_locks(); switch_ssl_destroy_ssl_locks();
#endif #endif
curl_global_cleanup(); curl_global_cleanup();
} }