diff --git a/indra/llcorehttp/examples/http_texture_load.cpp b/indra/llcorehttp/examples/http_texture_load.cpp
index f80e64c9651ebd18f4e12a24896462376d7d8f80..c7376042b304580045098e7faea2b3f0a16e68ae 100644
--- a/indra/llcorehttp/examples/http_texture_load.cpp
+++ b/indra/llcorehttp/examples/http_texture_load.cpp
@@ -645,7 +645,7 @@ void ssl_thread_id_callback(CRYPTO_THREADID* pthreadid)
 #if defined(WIN32)
 	CRYPTO_THREADID_set_pointer(pthreadid, GetCurrentThread());
 #else
-	CRYPTO_THREADID_set_numeric(pthreadid, pthread_self());
+	CRYPTO_THREADID_set_pointer(pthreadid, pthread_self());
 #endif
 }
 
diff --git a/indra/llcorehttp/tests/llcorehttp_test.cpp b/indra/llcorehttp/tests/llcorehttp_test.cpp
index d2df15ed5fd76e3c6a04ccc92ef97bce601315ee..cf4dff877ad75c234d5f3b40e75f49cdef5c1a89 100755
--- a/indra/llcorehttp/tests/llcorehttp_test.cpp
+++ b/indra/llcorehttp/tests/llcorehttp_test.cpp
@@ -118,7 +118,7 @@ void ssl_thread_id_callback(CRYPTO_THREADID* pthreadid)
 #if defined(WIN32)
 	CRYPTO_THREADID_set_pointer(pthreadid, GetCurrentThread());
 #else
-	CRYPTO_THREADID_set_numeric(pthreadid, pthread_self());
+	CRYPTO_THREADID_set_pointer(pthreadid, pthread_self());
 #endif
 }
 
diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index be7a08ac41c8360b89c3e9310d0c970f9d7ebe31..58a5df21dd945dee3bb8cdb0a820c21cb34f90cc 100644
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -663,7 +663,7 @@ void LLCrashLogger::ssl_thread_id_callback(CRYPTO_THREADID* pthreadid)
 #if LL_WINDOWS
     CRYPTO_THREADID_set_pointer(pthreadid, GetCurrentThread());
 #else
-    CRYPTO_THREADID_set_numeric(pthreadid, pthread_self());
+    CRYPTO_THREADID_set_pointer(pthreadid, pthread_self());
 #endif
 }