From: Anthony Minessale Date: Wed, 18 May 2011 21:10:46 +0000 (-0500) Subject: FS-3303 --resolve this was an edge case between fail_on_single_reject and group_confirm X-Git-Tag: v1.2-rc1~118^2~6^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fae95433e2a41bc61a76ab28d1de46eda2799607;p=thirdparty%2Ffreeswitch.git FS-3303 --resolve this was an edge case between fail_on_single_reject and group_confirm --- diff --git a/src/switch_ivr_originate.c b/src/switch_ivr_originate.c index b0a159eea9..ff8aa88d66 100644 --- a/src/switch_ivr_originate.c +++ b/src/switch_ivr_originate.c @@ -2454,6 +2454,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess if (fail_on_single_reject == 1 || switch_stristr(cause_str, fail_on_single_reject_var)) { force_reason = reason; + status = SWITCH_STATUS_FALSE; goto outer_for; } }