summaryrefslogtreecommitdiff
path: root/pbx/ael/ael.y
diff options
context:
space:
mode:
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 */