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.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/ael/ael.y b/pbx/ael/ael.y
index 35be10c6b..e581ba71c 100644
--- a/pbx/ael/ael.y
+++ b/pbx/ael/ael.y
@@ -357,7 +357,7 @@ goto_word : word { $$ = $1;}
asprintf(&($$), "%s%s", $1, $2);
free($1);
free($2);}
- | word COLON word {
+ | goto_word COLON word {
asprintf(&($$), "%s:%s", $1, $3);
free($1);
free($3);}