From: Emanuele Di Pascale Date: Tue, 15 Oct 2019 13:25:15 +0000 (+0200) Subject: lib: include ldpd to the list of daemons X-Git-Tag: base_7.3~150^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=984fd9614d1fa12ec127da81c5c0671f4b359b6e;p=matthieu%2Ffrr.git lib: include ldpd to the list of daemons ... for commands such as 'show running-config X'. Signed-off-by: Emanuele Di Pascale --- diff --git a/lib/command.h b/lib/command.h index d5dc129c72..2176b14615 100644 --- a/lib/command.h +++ b/lib/command.h @@ -414,9 +414,9 @@ struct cmd_node { /* Daemons 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\nFor the sharpd daemon\nFor the vrrpd 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\nFor the ldpd daemon\n" #define DAEMONS_LIST \ - "" + "" /* Prototypes. */ extern void install_node(struct cmd_node *, int (*)(struct vty *));