Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: crypto/openssl_util.cc

Issue 568643003: Reland dd7edfa67: Switch Mac over to BoringSSL from NSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: crypto/openssl_util.cc
diff --git a/crypto/openssl_util.cc b/crypto/openssl_util.cc
index 79944891e2fbd286617c635bdc080f120f0fc848..f41b55a8fff71e45a44d3bf9210979a849178419 100644
--- a/crypto/openssl_util.cc
+++ b/crypto/openssl_util.cc
@@ -50,7 +50,6 @@ class OpenSSLInitSingleton {
OpenSSLInitSingleton() {
SSL_load_error_strings();
SSL_library_init();
- OpenSSL_add_all_algorithms();
davidben 2014/09/12 00:31:28 Removing this line because it's #define-d to SSL_l
int num_locks = CRYPTO_num_locks();
locks_.reserve(num_locks);
for (int i = 0; i < num_locks; ++i)

Powered by Google App Engine
This is Rietveld 408576698