diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2018-09-08 22:00:24 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-04-16 12:53:00 +0200 |
commit | 249a771b63505b24d2a8c05158d7692384811533 (patch) | |
tree | 20d587dfca7061a129f479e7a96208453cfc3941 /vtysh/vtysh.c | |
parent | *: clean up cmd_node initializers (diff) | |
download | frr-249a771b63505b24d2a8c05158d7692384811533.tar.xz frr-249a771b63505b24d2a8c05158d7692384811533.zip |
*: remove cmd_node->vtysh
The only nodes that have this as 0 don't have a "->func" anyway, so the
entire thing is really just pointless.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'vtysh/vtysh.c')
-rw-r--r-- | vtysh/vtysh.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index b8fd31142..563914af4 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1390,7 +1390,6 @@ struct cmd_node link_params_node = { static struct cmd_node rpki_node = { .node = RPKI_NODE, .prompt = "%s(config-rpki)# ", - .vtysh = 1, }; #if HAVE_BFDD > 0 |