From fae95433e2a41bc61a76ab28d1de46eda2799607 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 18 May 2011 16:10:46 -0500 Subject: [PATCH] FS-3303 --resolve this was an edge case between fail_on_single_reject and group_confirm --- src/switch_ivr_originate.c | 1 + 1 file changed, 1 insertion(+) 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; } }