Skip to content

Commit

Permalink
drouting: Fix missing MI recipe array terminations
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Feb 5, 2020
1 parent f5986fc commit da22c08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/drouting/drouting.c
Expand Up @@ -485,10 +485,10 @@ static mi_export_t mi_cmds[] = {
{EMPTY_MI_RECIPE}}
},
{ "dr_number_routing", HLP4, MI_NAMED_PARAMS_ONLY, 0, {
{mi_dr_number_routing_1, {"number"}},
{mi_dr_number_routing_1, {"number", 0}},
{mi_dr_number_routing_2, {"group_id", "number", 0}},
{mi_dr_number_routing_3, {"partition_name", "number"}},
{mi_dr_number_routing_4, {"partition_name", "group_id", "number"}},
{mi_dr_number_routing_3, {"partition_name", "number", 0}},
{mi_dr_number_routing_4, {"partition_name", "group_id", "number", 0}},
{EMPTY_MI_RECIPE}}
},
{ "dr_reload_status", HLP5, 0, 0, {
Expand Down

0 comments on commit da22c08

Please sign in to comment.