From: Renato Westphal Date: Tue, 31 Aug 2021 03:50:55 +0000 (-0300) Subject: ospf6d: fix display of debug command in the running configuration X-Git-Tag: base_8.1~109^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=3ebc5e4be9343f6f1e35a3d324234caf0a07b5d9;p=matthieu%2Ffrr.git ospf6d: fix display of debug command in the running configuration Signed-off-by: Renato Westphal --- diff --git a/ospf6d/ospf6_gr_helper.c b/ospf6d/ospf6_gr_helper.c index d0536087c3..76496c050f 100644 --- a/ospf6d/ospf6_gr_helper.c +++ b/ospf6d/ospf6_gr_helper.c @@ -1373,6 +1373,6 @@ int config_write_ospf6_gr_helper(struct vty *vty, struct ospf6 *ospf6) int config_write_ospf6_debug_gr_helper(struct vty *vty) { if (IS_DEBUG_OSPF6_GR) - vty_out(vty, "debug ospf6 gr helper\n"); + vty_out(vty, "debug ospf6 graceful-restart\n"); return 0; }