From: Anthony Minessale Date: Wed, 12 Mar 2008 01:25:05 +0000 (+0000) Subject: update X-Git-Tag: v1.0-rc1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b3dded9d8fcc32af21485d1e057f8aff57ff37e;p=thirdparty%2Ffreeswitch.git update git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7872 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c index 792cc7fd48..3a284b2be6 100644 --- a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c +++ b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c @@ -121,6 +121,7 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t * } switch_caller_extension_add_application(session, *extension, application, data); + proceed = 1; } if (do_break_i == BREAK_ON_FALSE || do_break_i == BREAK_ALWAYS) { @@ -264,7 +265,7 @@ SWITCH_STANDARD_DIALPLAN(dialplan_hunt) proceed = parse_exten(session, caller_profile, xexten, &extension); - if (proceed && !switch_true(cont)) { + if (proceed && !switch_true(cont)) { break; }