File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1096,18 +1096,18 @@ InitializationResult InitializeOncePerProcess(
1096
1096
std::string env_openssl_conf;
1097
1097
credentials::SafeGetenv (" OPENSSL_CONF" , &env_openssl_conf);
1098
1098
if (!env_openssl_conf.empty ()) {
1099
- conf_file = env_openssl_conf.c_str ();
1099
+ conf_file = env_openssl_conf.c_str ();
1100
1100
}
1101
1101
// Use --openssl-conf command line option if specified.
1102
1102
if (!per_process::cli_options->openssl_config .empty ()) {
1103
- conf_file = per_process::cli_options->openssl_config .c_str ();
1103
+ conf_file = per_process::cli_options->openssl_config .c_str ();
1104
1104
}
1105
1105
1106
1106
OPENSSL_INIT_SETTINGS* settings = OPENSSL_INIT_new ();
1107
1107
OPENSSL_INIT_set_config_filename (settings, conf_file);
1108
1108
OPENSSL_INIT_set_config_appname (settings, conf_section_name);
1109
1109
OPENSSL_INIT_set_config_file_flags (settings,
1110
- CONF_MFLAGS_IGNORE_MISSING_FILE);
1110
+ CONF_MFLAGS_IGNORE_MISSING_FILE);
1111
1111
1112
1112
OPENSSL_init_crypto (OPENSSL_INIT_LOAD_CONFIG, settings);
1113
1113
OPENSSL_INIT_free (settings);
You can’t perform that action at this time.
0 commit comments