Skip to content

Commit a0e4401

Browse files
committed
crypto: add OPENSSL_IS_BORINGSSL guard
1 parent 84d6ce9 commit a0e4401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ InitializationResult InitializeOncePerProcess(
10301030
}
10311031

10321032
if (init_flags & kInitOpenSSL) {
1033-
#if HAVE_OPENSSL
1033+
#if HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
10341034
{
10351035
std::string extra_ca_certs;
10361036
if (credentials::SafeGetenv("NODE_EXTRA_CA_CERTS", &extra_ca_certs))

0 commit comments

Comments
 (0)