From 082cb7154e8c7ebc10497e87a30be06a1b3f2d9b Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 13 May 2011 16:29:48 -0500 Subject: [PATCH] ditto --- src/include/switch_curl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); }