[asterisk-commits] mvanbaak: branch 1.4 r130373 - /branches/1.4/pbx/pbx_ael.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Jul 12 05:25:55 CDT 2008
Author: mvanbaak
Date: Sat Jul 12 05:25:52 2008
New Revision: 130373
URL: http://svn.digium.com/view/asterisk?view=rev&rev=130373
Log:
in 1.4 the functions still have | as argument seperator.
This commit fixes the use of RAND in the ael random function.
(closes issue #13061)
Reported by: danpwi
Modified:
branches/1.4/pbx/pbx_ael.c
Modified: branches/1.4/pbx/pbx_ael.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/pbx/pbx_ael.c?view=diff&rev=130373&r1=130372&r2=130373
==============================================================================
--- branches/1.4/pbx/pbx_ael.c (original)
+++ branches/1.4/pbx/pbx_ael.c Sat Jul 12 05:25:52 2008
@@ -3627,7 +3627,7 @@
if_test->type = AEL_IF_CONTROL;
if_end->type = AEL_APPCALL;
if ( p->type == PV_RANDOM )
- snprintf(buf1,sizeof(buf1),"$[${RAND(0,99)} < (%s)]",p->u1.str);
+ snprintf(buf1,sizeof(buf1),"$[${RAND(0|99)} < (%s)]",p->u1.str);
else
snprintf(buf1,sizeof(buf1),"$[%s]",p->u1.str);
if_test->app = 0;
More information about the asterisk-commits
mailing list