diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-09-06 18:20:20 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-09-06 18:20:20 +0000 |
commit | 45a3511b9a41efb50936672a9c75c603a385df7c (patch) | |
tree | c19ce0dd73d8217fd9a1fa158ca839902ca1140f /cpp/src/IceSSL/OpenSSLPluginI.cpp | |
parent | comments (diff) | |
download | ice-45a3511b9a41efb50936672a9c75c603a385df7c.tar.bz2 ice-45a3511b9a41efb50936672a9c75c603a385df7c.tar.xz ice-45a3511b9a41efb50936672a9c75c603a385df7c.zip |
Linkage problem in windows.
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.cpp')
-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; |