From: Tilghman Lesher Date: Sat, 6 Sep 2008 15:23:42 +0000 (+0000) Subject: Reverting behavior change (AGI should not exit non-zero on SUCCESS) X-Git-Tag: 1.4.22-rc4~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e8f3075bc8f751bba163f54c9d3a3f5defaf983;p=thirdparty%2Fasterisk.git 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 --- 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)