summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-09-06 15:26:45 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-09-06 15:26:45 +0000
commit900b7d75daeec258092f2bbe08632ef1299e2c5d (patch)
tree8ea578b0c6d6c4c6839ef828b1e9e78f44208435 /res
parent28764dd1f6c34888009baeb6a64334f6182bb007 (diff)
Merged revisions 141503 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r141503 | tilghman | 2008-09-06 10:23:42 -0500 (Sat, 06 Sep 2008) | 4 lines 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/trunk@141504 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 35e1d7e41..02b666c38 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2948,7 +2948,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)