From a1670a95b20a5009a251c87976e29d9fb24e4c2b Mon Sep 17 00:00:00 2001 From: tilghman Date: Sat, 6 Sep 2008 15:23:42 +0000 Subject: Reverting behavior change (AGI should not exit non-zero on SUCCESS) (closes issue #13434) Reported by: francesco_r git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@141503 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_agi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_agi.c b/res/res_agi.c index 2ab5b8b31..20bb9331b 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -2092,7 +2092,7 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int return -1; } - return res; + return 0; } static int agi_exec(struct ast_channel *chan, void *data) -- cgit v1.2.3