From 0e8f3075bc8f751bba163f54c9d3a3f5defaf983 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Sat, 6 Sep 2008 15:23:42 +0000 Subject: [PATCH] Reverting behavior change (AGI should not exit non-zero on SUCCESS) (closes issue #13434) Reported by: francesco_r git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@141503 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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 2ab5b8b316..20bb9331b8 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)