From 3b96430b72989d398500c9bd49ce3c60be4f8575 Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Thu, 13 Jun 2019 17:59:16 -0400 Subject: [PATCH] lib: Add vrrpd,sharpd to DAEMONS_* strings Add vrrpd and sharpd to the DAEMONS_* list so they can be dispatched daemons independent commands such as `show work-queues` and `log-filter`. Signed-off-by: Stephen Worley --- lib/command.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/command.h b/lib/command.h index 95be7ccb6e..fbc0e7dd6d 100644 --- a/lib/command.h +++ b/lib/command.h @@ -414,9 +414,9 @@ struct cmd_node { /* Dameons lists */ #define DAEMONS_STR \ - "For the zebra daemon\nFor the rip daemon\nFor the ripng daemon\nFor the ospf daemon\nFor the ospfv6 daemon\nFor the bgp daemon\nFor the isis daemon\nFor the pbr daemon\nFor the fabricd daemon\nFor the pim daemon\nFor the static daemon\n" + "For the zebra daemon\nFor the rip daemon\nFor the ripng daemon\nFor the ospf daemon\nFor the ospfv6 daemon\nFor the bgp daemon\nFor the isis daemon\nFor the pbr daemon\nFor the fabricd daemon\nFor the pim daemon\nFor the static daemon\nFor the sharpd daemon\nFor the vrrpd daemon\n" #define DAEMONS_LIST \ - "" + "" /* Prototypes. */ extern void install_node(struct cmd_node *, int (*)(struct vty *)); -- 2.39.5