[asterisk-commits] russell: branch 1.4 r46558 - in /branches/1.4:
./ res/res_agi.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Oct 30 23:14:13 MST 2006
Author: russell
Date: Tue Oct 31 00:14:13 2006
New Revision: 46558
URL: http://svn.digium.com/view/asterisk?rev=46558&view=rev
Log:
Merged revisions 46557 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r46557 | russell | 2006-10-31 01:13:09 -0500 (Tue, 31 Oct 2006) | 3 lines
fix some copy/paste bugs in the checking of arguments for the
"control stream file" AGI command (issue #8255, mnicholson)
........
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?rev=46558&r1=46557&r2=46558&view=diff
==============================================================================
--- branches/1.4/res/res_agi.c (original)
+++ branches/1.4/res/res_agi.c Tue Oct 31 00:14:13 2006
@@ -515,12 +515,12 @@
if ((argc > 5) && (sscanf(argv[5], "%d", &skipms) != 1))
return RESULT_SHOWUSAGE;
- if (argc > 6 && !ast_strlen_zero(argv[8]))
+ if (argc > 6 && !ast_strlen_zero(argv[6]))
fwd = argv[6];
else
fwd = "#";
- if (argc > 7 && !ast_strlen_zero(argv[8]))
+ if (argc > 7 && !ast_strlen_zero(argv[7]))
rev = argv[7];
else
rev = "*";
More information about the asterisk-commits
mailing list