summaryrefslogtreecommitdiff
path: root/pbx/ael/ael.y
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-05-02 20:44:56 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-05-02 20:44:56 +0000
commit7a625b894d1184081eb4bfdd4d17e82f1728f4ed (patch)
treea46368c12c0493ef472fac94268a98cd4dc77373 /pbx/ael/ael.y
parent7bbb6bd3aac3ed81d09dcb8e424ed851abacf668 (diff)
fix a bug previously introduced in the handling of timespec.
Fortunately we have regression tests! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24343 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/ael/ael.y')
-rw-r--r--pbx/ael/ael.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/pbx/ael/ael.y b/pbx/ael/ael.y
index 6c0a56f3f..5e1b41708 100644
--- a/pbx/ael/ael.y
+++ b/pbx/ael/ael.y
@@ -303,9 +303,9 @@ timerange: word3_list COLON word3_list COLON word3_list {
/* full time specification range|dow|*|* */
timespec : timerange BAR word3_list BAR word3_list BAR word3_list {
$$ = nword($1, &@1);
- $$->u1.list = nword($3, &@3);
- $$->u1.list->next = nword($5, &@5);
- $$->u1.list->next->next = nword($7, &@7); }
+ $$->next = nword($3, &@3);
+ $$->next->next = nword($5, &@5);
+ $$->next->next->next = nword($7, &@7); }
;
/* expression used in if, random, while, switch */