diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2018-10-28 22:30:42 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 16:12:46 -0400 | 
| commit | 663b9ff6af97bc86d1b92be0d7e1ed8185852426 (patch) | |
| tree | eea3d69b09bcab3ef57cc150e05bd65fa4b4b747 /indra/llcorehttp/tests | |
| parent | e9c667af96278d277eb2a20a6d8364d21464c3eb (diff) | |
DRTVWR-476: pthread_self() also needs CRYPTO_THREADID_set_pointer()
Diffstat (limited to 'indra/llcorehttp/tests')
| -rwxr-xr-x | indra/llcorehttp/tests/llcorehttp_test.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcorehttp/tests/llcorehttp_test.cpp b/indra/llcorehttp/tests/llcorehttp_test.cpp index d2df15ed5f..cf4dff877a 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  } | 
