We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a6d21d commit f4e5a43Copy full SHA for f4e5a43
src/node.cc
@@ -868,13 +868,15 @@ static ExitCode InitializeNodeWithArgsInternal(
868
// default value.
869
V8::SetFlagsFromString("--rehash-snapshot");
870
871
+#if HAVE_OPENSSL
872
// TODO(joyeecheung): make this a per-env option and move the normalization
873
// into HandleEnvOptions.
874
std::string use_system_ca;
875
if (credentials::SafeGetenv("NODE_USE_SYSTEM_CA", &use_system_ca) &&
876
use_system_ca == "1") {
877
per_process::cli_options->use_system_ca = true;
878
}
879
+#endif // HAVE_OPENSSL
880
HandleEnvOptions(per_process::cli_options->per_isolate->per_env);
881
882
std::string node_options;
0 commit comments