[asterisk-commits] tilghman: branch 1.6.1 r141506 - in /branches/1.6.1: ./ res/res_agi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Sep 6 10:28:59 CDT 2008
Author: tilghman
Date: Sat Sep 6 10:28:59 2008
New Revision: 141506
URL: http://svn.digium.com/view/asterisk?view=rev&rev=141506
Log:
Merged revisions 141504 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r141504 | tilghman | 2008-09-06 10:26:45 -0500 (Sat, 06 Sep 2008) | 12 lines
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
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/res/res_agi.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/res/res_agi.c?view=diff&rev=141506&r1=141505&r2=141506
==============================================================================
--- branches/1.6.1/res/res_agi.c (original)
+++ branches/1.6.1/res/res_agi.c Sat Sep 6 10:28:59 2008
@@ -2948,7 +2948,7 @@
return -1;
}
- return res;
+ return 0;
}
static int agi_exec(struct ast_channel *chan, void *data)
More information about the asterisk-commits
mailing list