Skip to content

Commit

Permalink
crypto: add OPENSSL_IS_BORINGSSL guard
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jun 24, 2021
1 parent 84d6ce9 commit a0e4401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ InitializationResult InitializeOncePerProcess(
}

if (init_flags & kInitOpenSSL) {
#if HAVE_OPENSSL
#if HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
{
std::string extra_ca_certs;
if (credentials::SafeGetenv("NODE_EXTRA_CA_CERTS", &extra_ca_certs))
Expand Down

0 comments on commit a0e4401

Please sign in to comment.