Skip to content

Commit

Permalink
dialplan: Fix MI 'dp_translate' with 3 parameters
Browse files Browse the repository at this point in the history
'partition' should be last, not first.
  • Loading branch information
liviuchircu committed Nov 9, 2020
1 parent 5aa38e8 commit ac01ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dialplan/dialplan.c
Expand Up @@ -111,7 +111,7 @@ static mi_export_t mi_cmds[] = {
},
{ "dp_translate", 0, 0, 0, {
{mi_translate2, {"dpid", "input", 0}},
{mi_translate3, {"partition", "dpid", "input", 0}},
{mi_translate3, {"dpid", "input", "partition", 0}},
{EMPTY_MI_RECIPE}}
},
{ "dp_show_partition", 0, 0, mi_child_init, {
Expand Down

0 comments on commit ac01ed5

Please sign in to comment.