diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLPluginI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.cpp b/cpp/src/IceSSL/OpenSSLPluginI.cpp index 8dd68029d96..d5f2eac15f2 100644 --- a/cpp/src/IceSSL/OpenSSLPluginI.cpp +++ b/cpp/src/IceSSL/OpenSSLPluginI.cpp @@ -90,9 +90,9 @@ namespace IceSSL extern "C" { - static void lockingCallback(int, int, const char*, int); + void lockingCallback(int, int, const char*, int); - static unsigned long idFunction(); + unsigned long idFunction(); } class SslLockKeeper @@ -110,7 +110,7 @@ SslLockKeeper lockKeeper; } -static void IceSSL::lockingCallback(int mode, int type, const char *file, int line) +void IceSSL::lockingCallback(int mode, int type, const char *file, int line) { if(mode & CRYPTO_LOCK) { @@ -122,7 +122,7 @@ static void IceSSL::lockingCallback(int mode, int type, const char *file, int li } } -static unsigned long IceSSL::idFunction() +unsigned long IceSSL::idFunction() { unsigned long threadID = 0; |