From 3ebc5e4be9343f6f1e35a3d324234caf0a07b5d9 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Tue, 31 Aug 2021 00:50:55 -0300 Subject: [PATCH] ospf6d: fix display of debug command in the running configuration Signed-off-by: Renato Westphal --- ospf6d/ospf6_gr_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5