mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
another instance of context name
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24344 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -488,7 +488,7 @@ jumptarget : goto_word { /* ext, 1 */
|
||||
| goto_word COMMA goto_word { /* ext, pri */
|
||||
$$ = nword($1, &@1);
|
||||
$$->next = nword($3, &@3); }
|
||||
| goto_word COMMA word AT word { /* context, ext, pri */
|
||||
| goto_word COMMA word AT context_name { /* context, ext, pri */
|
||||
$$ = nword($5, &@5);
|
||||
$$->next = nword($1, &@1);
|
||||
$$->next->next = nword($3, &@3); }
|
||||
@@ -496,10 +496,6 @@ jumptarget : goto_word { /* ext, 1 */
|
||||
$$ = nword($3, &@3);
|
||||
$$->next = nword($1, &@1);
|
||||
$$->next->next = nword(strdup("1"), &@3); }
|
||||
| goto_word COMMA word AT KW_DEFAULT { /* default, ext, pri */
|
||||
$$ = nword(strdup("default"), &@1);
|
||||
$$->next = nword($1, &@1);
|
||||
$$->next->next = nword($3, &@3); }
|
||||
| goto_word AT KW_DEFAULT { /* default, ext, 1 */
|
||||
$$ = nword(strdup("default"), &@1);
|
||||
$$->next = nword($1, &@3);
|
||||
|
Reference in New Issue
Block a user