1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-27 04:50:59 +00:00

fix reload of outbound_name change

This commit is contained in:
Brian West 2013-06-18 15:48:52 -05:00
parent 691acf2812
commit 750c06c1b8

@ -4178,7 +4178,7 @@ static switch_status_t load_config(int reload, int del_all)
node = create_node(name, imp, globals.sql_mutex);
}
if ((val = switch_xml_attr(fifo, "outbound_name")) && !zstr(val)) {
if ((val = switch_xml_attr(fifo, "outbound_name"))) {
node->outbound_name = switch_core_strdup(node->pool, val);
}