FS-5767 --resolve allow odbc variable to be used for postgresql even if odbc is not present

This commit is contained in:
Marc Olivier Chouinard 2013-09-12 16:10:54 -04:00
parent d9216daedb
commit 743b094416
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ static switch_status_t load_config(switch_bool_t reload)
char *val = (char *) switch_xml_attr_soft(param, "value");
if (!strcasecmp(var, "odbc-dsn") && !zstr(val)) {
if (switch_odbc_available()) {
if (switch_odbc_available() || switch_pgsql_available()) {
switch_set_string(globals.odbc_dsn, val);
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "ODBC IS NOT AVAILABLE!\n");