Browse Source

crypto: remove duplicate ERR_load_crypto_strings()

ERR_load_crypto_strings() registers the error strings for
all libcrypto functions, SSL_load_error_strings() does the
same, but also registers the libssl error strings.
v0.11.11-release
Yorkie 11 years ago
committed by Fedor Indutny
parent
commit
c7f5c98ee9
  1. 1
      src/node_crypto.cc

1
src/node_crypto.cc

@ -4139,7 +4139,6 @@ void InitCryptoOnce() {
SSL_library_init();
OpenSSL_add_all_algorithms();
SSL_load_error_strings();
ERR_load_crypto_strings();
crypto_lock_init();
CRYPTO_set_locking_callback(crypto_lock_cb);

Loading…
Cancel
Save