[asterisk-commits] tilghman: trunk r141504 - in /trunk: ./ res/res_agi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Sep 6 10:26:45 CDT 2008
Author: tilghman
Date: Sat Sep 6 10:26:45 2008
New Revision: 141504
URL: http://svn.digium.com/view/asterisk?view=rev&rev=141504
Log:
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:
trunk/ (props changed)
trunk/res/res_agi.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_agi.c?view=diff&rev=141504&r1=141503&r2=141504
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Sat Sep 6 10:26:45 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