diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2021-08-31 05:50:55 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2021-08-31 06:48:22 +0200 |
commit | 3ebc5e4be9343f6f1e35a3d324234caf0a07b5d9 (patch) | |
tree | fc67ed227c98f6584f3e6e95b8d1bffd9f12fb1b /ospf6d/ospf6_gr_helper.c | |
parent | ospf6d: fix unguarded GR debug message (diff) | |
download | frr-3ebc5e4be9343f6f1e35a3d324234caf0a07b5d9.tar.xz frr-3ebc5e4be9343f6f1e35a3d324234caf0a07b5d9.zip |
ospf6d: fix display of debug command in the running configuration
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_gr_helper.c')
-rw-r--r-- | ospf6d/ospf6_gr_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_gr_helper.c b/ospf6d/ospf6_gr_helper.c index d0536087c..76496c050 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; } |