[asterisk-commits] tilghman: branch 1.6.0 r141505 - in /branches/1.6.0: ./ res/res_agi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Sep 6 10:28:05 CDT 2008
Author: tilghman
Date: Sat Sep 6 10:28:04 2008
New Revision: 141505
URL: http://svn.digium.com/view/asterisk?view=rev&rev=141505
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.0/ (props changed)
branches/1.6.0/res/res_agi.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/res/res_agi.c?view=diff&rev=141505&r1=141504&r2=141505
==============================================================================
--- branches/1.6.0/res/res_agi.c (original)
+++ branches/1.6.0/res/res_agi.c Sat Sep 6 10:28:04 2008
@@ -2966,7 +2966,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