Skip to content

Commit

Permalink
Merge pull request FRRouting#2016 from pguibert6WIND/issue_2000
Browse files Browse the repository at this point in the history
bgpd: `logical-router` netns vtysh configuration comparison incorrect
  • Loading branch information
qlyoung authored Apr 3, 2018
2 parents dad5c29 + 34f6bdb commit 4eb81e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtysh/vtysh_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void vtysh_config_parse_line(void *arg, const char *line)
config = config_get(INTERFACE_NODE, line);
else if (strncmp(line, "pseudowire", strlen("pseudowire")) == 0)
config = config_get(PW_NODE, line);
else if (strncmp(line, "logical-router", strlen("ns")) == 0)
else if (strncmp(line, "logical-router", strlen("logical-router")) == 0)
config = config_get(LOGICALROUTER_NODE, line);
else if (strncmp(line, "vrf", strlen("vrf")) == 0)
config = config_get(VRF_NODE, line);
Expand Down

0 comments on commit 4eb81e5

Please sign in to comment.