From: Brian West Date: Tue, 18 Jun 2013 20:48:52 +0000 (-0500) Subject: fix reload of outbound_name change X-Git-Tag: v1.5.2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=750c06c1b8627499c6feaed8050ec2960d0f158c;p=thirdparty%2Ffreeswitch.git fix reload of outbound_name change --- diff --git a/src/mod/applications/mod_fifo/mod_fifo.c b/src/mod/applications/mod_fifo/mod_fifo.c index 1ff920eedb..bcec97bbb4 100644 --- a/src/mod/applications/mod_fifo/mod_fifo.c +++ b/src/mod/applications/mod_fifo/mod_fifo.c @@ -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); }