aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steele <[email protected]>2019-11-18 10:54:19 +0000
committerJan Osusky <[email protected]>2020-08-21 11:22:08 +0000
commit22ae6a91f5adaea5b101965994b62148814e6a96 (patch)
treea1ed0cc2dbf3d1238ffb5d7eb98cd1f970e82cf2
parentEditorial changes in DSN attributes (diff)
downloadvmime-22ae6a91f5adaea5b101965994b62148814e6a96.tar.gz
vmime-22ae6a91f5adaea5b101965994b62148814e6a96.zip
Fix #223
-rw-r--r--src/vmime/net/tls/openssl/OpenSSLInitializer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vmime/net/tls/openssl/OpenSSLInitializer.cpp b/src/vmime/net/tls/openssl/OpenSSLInitializer.cpp
index 47ad00fd..c7b1013d 100644
--- a/src/vmime/net/tls/openssl/OpenSSLInitializer.cpp
+++ b/src/vmime/net/tls/openssl/OpenSSLInitializer.cpp
@@ -127,8 +127,8 @@ void OpenSSLInitializer::initialize() {
g_openSSLMutexes[i] = vmime::platform::getHandler()->createCriticalSection();
}
- CRYPTO_set_locking_callback(OpenSSLCallback_lock);
- CRYPTO_set_id_callback(OpenSSLCallback_id);
+ CRYPTO_set_locking_callback(VMime_OpenSSLCallback_lock);
+ CRYPTO_set_id_callback(VMime_OpenSSLCallback_id);
#endif
// Seed the RNG, in case /dev/urandom is not available. Explicitely calling