Skip to content

Commit

Permalink
IO library: eliminate compiler warning with openssl 1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeov committed Nov 29, 2017
1 parent 1b219e1 commit b53f9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cc/kfsio/SslFilter.cc
Expand Up @@ -102,7 +102,7 @@ class SslFilter::Impl : private IOBuffer::Reader
sOpenSslInitPtr = &sOpenSslInit;
#if OPENSSL_VERSION_NUMBER < 0x10000000L
CRYPTO_set_id_callback(&ThreadIdCB);
#else
#elif OPENSSL_VERSION_NUMBER < 0x10100000L
// Ensure that the CRYPTO_THREADID_* is present, and use the default
// implementation.
CRYPTO_THREADID_get_callback();
Expand Down

0 comments on commit b53f9ef

Please sign in to comment.