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