Skip to content

Commit

Permalink
Merge pull request #10141 from FRRouting/mergify/bp/stable/8.0/pr-10137
Browse files Browse the repository at this point in the history
vtysh: add missing rpki node when showing config (backport #10137)
  • Loading branch information
ton31337 committed Nov 30, 2021
2 parents e6526a6 + 2f8cb61 commit 8558b17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vtysh/vtysh_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,8 @@ void vtysh_config_parse_line(void *arg, const char *line)
config = config_get(MPLS_NODE, line);
else if (strncmp(line, "bfd", strlen("bfd")) == 0)
config = config_get(BFD_NODE, line);
else if (strncmp(line, "rpki", strlen("rpki")) == 0)
config = config_get(RPKI_NODE, line);
else {
if (strncmp(line, "log", strlen("log")) == 0
|| strncmp(line, "hostname", strlen("hostname")) == 0
Expand Down

0 comments on commit 8558b17

Please sign in to comment.