[asterisk-commits] tilghman: branch 1.4 r77783 - in /branches/1.4: ./ res/res_agi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 30 13:43:56 CDT 2007
Author: tilghman
Date: Mon Jul 30 13:43:55 2007
New Revision: 77783
URL: http://svn.digium.com/view/asterisk?view=rev&rev=77783
Log:
Merged revisions 77782 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r77782 | tilghman | 2007-07-30 13:40:54 -0500 (Mon, 30 Jul 2007) | 2 lines
Revert change in revision 71656, even though it fixed a bug, because many people were depending upon the (broken) behavior.
........
Modified:
branches/1.4/ (props changed)
branches/1.4/res/res_agi.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_agi.c?view=diff&rev=77783&r1=77782&r2=77783
==============================================================================
--- branches/1.4/res/res_agi.c (original)
+++ branches/1.4/res/res_agi.c Mon Jul 30 13:43:55 2007
@@ -1110,7 +1110,8 @@
}
fdprintf(agi->fd, "200 result=%d\n", res);
- return res >= 0 ? RESULT_SUCCESS : RESULT_FAILURE;
+ /* Even though this is wrong, users are depending upon this result. */
+ return res;
}
static int handle_setcallerid(struct ast_channel *chan, AGI *agi, int argc, char **argv)
More information about the asterisk-commits
mailing list