[svn-commits] lmadsen: trunk r254446 - /trunk/res/res_agi.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Mar 25 10:21:31 CDT 2010


Author: lmadsen
Date: Thu Mar 25 10:21:26 2010
New Revision: 254446

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=254446
Log:
handle_speechset has 4 arguments.

Update code to reflect that handle_speechset has 4 arguments.

(closes issue #17093)
Reported by: gpatri
Patches: 
      res_agi.patch uploaded by gpatri (license 1014)
Tested by: pabelanger, mmichelson

Modified:
    trunk/res/res_agi.c

Modified: trunk/res/res_agi.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_agi.c?view=diff&rev=254446&r1=254445&r2=254446
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Thu Mar 25 10:21:26 2010
@@ -2661,7 +2661,7 @@
 static int handle_speechset(struct ast_channel *chan, AGI *agi, int argc, const char * const argv[])
 {
 	/* Check for minimum arguments */
-        if (argc != 3)
+	if (argc != 4)
 		return RESULT_SHOWUSAGE;
 
 	/* Check to make sure speech structure exists */




More information about the svn-commits mailing list