FS-4641 apply same fix to mod_xml_cdr
This commit is contained in:
parent
daa97613a7
commit
f8760a1fa8
|
@ -548,15 +548,15 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_xml_cdr_load)
|
||||||
} else if (!strcasecmp(var, "enable-cacert-check") && switch_true(val)) {
|
} else if (!strcasecmp(var, "enable-cacert-check") && switch_true(val)) {
|
||||||
globals.enable_cacert_check = 1;
|
globals.enable_cacert_check = 1;
|
||||||
} else if (!strcasecmp(var, "ssl-cert-path")) {
|
} else if (!strcasecmp(var, "ssl-cert-path")) {
|
||||||
globals.ssl_cert_file = val;
|
globals.ssl_cert_file = switch_core_strdup(globals.pool, val);
|
||||||
} else if (!strcasecmp(var, "ssl-key-path")) {
|
} else if (!strcasecmp(var, "ssl-key-path")) {
|
||||||
globals.ssl_key_file = val;
|
globals.ssl_key_file = switch_core_strdup(globals.pool, val);
|
||||||
} else if (!strcasecmp(var, "ssl-key-password")) {
|
} else if (!strcasecmp(var, "ssl-key-password")) {
|
||||||
globals.ssl_key_password = val;
|
globals.ssl_key_password = switch_core_strdup(globals.pool, val);
|
||||||
} else if (!strcasecmp(var, "ssl-version")) {
|
} else if (!strcasecmp(var, "ssl-version")) {
|
||||||
globals.ssl_version = val;
|
globals.ssl_version = switch_core_strdup(globals.pool, val);
|
||||||
} else if (!strcasecmp(var, "ssl-cacert-file")) {
|
} else if (!strcasecmp(var, "ssl-cacert-file")) {
|
||||||
globals.ssl_cacert_file = val;
|
globals.ssl_cacert_file = switch_core_strdup(globals.pool, val);
|
||||||
} else if (!strcasecmp(var, "enable-ssl-verifyhost") && switch_true(val)) {
|
} else if (!strcasecmp(var, "enable-ssl-verifyhost") && switch_true(val)) {
|
||||||
globals.enable_ssl_verifyhost = 1;
|
globals.enable_ssl_verifyhost = 1;
|
||||||
} else if (!strcasecmp(var, "auth-scheme")) {
|
} else if (!strcasecmp(var, "auth-scheme")) {
|
||||||
|
|
Loading…
Reference in New Issue