From: Anthony Minessale Date: Fri, 13 May 2011 21:29:48 +0000 (-0500) Subject: ditto X-Git-Tag: v1.2-rc1~118^2~6^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=082cb7154e8c7ebc10497e87a30be06a1b3f2d9b;p=thirdparty%2Ffreeswitch.git ditto --- diff --git a/src/include/switch_curl.h b/src/include/switch_curl.h index e22f2d5a60..3820ba8693 100644 --- a/src/include/switch_curl.h +++ b/src/include/switch_curl.h @@ -32,7 +32,7 @@ #define __SWITCH_CURL_H #include -#include "switch_ssl.h" +#include static inline void switch_curl_init(void) { @@ -41,7 +41,7 @@ static inline void switch_curl_init(void) if (curl_count == 0) { curl_global_init(CURL_GLOBAL_ALL); #if defined(HAVE_OPENSSL) - switch_curl_init_ssl_locks(); + switch_ssl_init_ssl_locks(); #endif } @@ -58,7 +58,7 @@ static inline void switch_curl_destroy() if (curl_count == 0) { #if defined(HAVE_OPENSSL) - switch_curl_destroy_ssl_locks(); + switch_ssl_destroy_ssl_locks(); #endif curl_global_cleanup(); }