diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2018-09-09 00:15:50 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-04-16 12:53:59 +0200 |
commit | f4b8291fcbcfb16c23d07c60d4669afaf396dbea (patch) | |
tree | 3b121c1e3ac8dc7a2d67ca965f4c8e4546e404c1 /bgpd/bgp_dump.c | |
parent | *: move CLI parent data to cmd_node->parent_node (diff) | |
download | frr-f4b8291fcbcfb16c23d07c60d4669afaf396dbea.tar.xz frr-f4b8291fcbcfb16c23d07c60d4669afaf396dbea.zip |
*: move CLI node names to cmd_node->name
And again for the name. Why on earth would we centralize this, just so
people can forget to update it?
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'bgpd/bgp_dump.c')
-rw-r--r-- | bgpd/bgp_dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_dump.c b/bgpd/bgp_dump.c index 36efcd538..a79c5e0da 100644 --- a/bgpd/bgp_dump.c +++ b/bgpd/bgp_dump.c @@ -780,6 +780,7 @@ DEFUN (no_dump_bgp_all, static int config_write_bgp_dump(struct vty *vty); /* BGP node structure. */ static struct cmd_node bgp_dump_node = { + .name = "dump", .node = DUMP_NODE, .prompt = "", .config_write = config_write_bgp_dump, |