aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 17:38:12 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 17:38:12 +0000
commitb631bce5c32f949a8ce7e58ffd56a31380b2b983 (patch)
tree307df4f08cd117df143817b62d4aa736db3f277e /pbx
parent129c6c7c78a08947ff4cc4d1dac915bfbef1a34b (diff)
Merged revisions 59688 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59688 | murf | 2007-04-02 11:31:32 -0600 (Mon, 02 Apr 2007) | 1 line continue in for-loop should go to the incrementer, not the test. As per 9435, thanks to marcelbarbulescu ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@59692 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_ael.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c
index 0a43ff0cf..f62e95d93 100644
--- a/pbx/pbx_ael.c
+++ b/pbx/pbx_ael.c
@@ -3135,7 +3135,7 @@ static void gen_prios(struct ael_extension *exten, char *label, pval *statement,
/* now, put the body of the for loop here */
exten->loop_break = for_end;
- exten->loop_continue = for_test;
+ exten->loop_continue = for_inc;
gen_prios(exten, new_label, p->u4.for_statements, mother_exten, this_context); /* this will link in all the statements here */