src: Call OpenSSL_add_all_algorithms to attempt to set up cpuid explicitly

See GH-377
This commit is contained in:
Tatsuhiro Tsujikawa 2015-10-08 22:50:51 +09:00
parent 10134097c3
commit c71c357fa6
1 changed files with 1 additions and 0 deletions

View File

@ -702,6 +702,7 @@ void libssl_init() {
#endif // OPENSSL_IS_BORINGSSL #endif // OPENSSL_IS_BORINGSSL
SSL_load_error_strings(); SSL_load_error_strings();
SSL_library_init(); SSL_library_init();
OpenSSL_add_all_algorithms();
} }
} // namespace ssl } // namespace ssl