diff options
author | Chirag Shah <chirag@cumulusnetworks.com> | 2018-05-06 00:38:11 +0200 |
---|---|---|
committer | Chirag Shah <chirag@cumulusnetworks.com> | 2018-05-06 00:38:11 +0200 |
commit | 257660b4577f6ab711889beec42bbff5526b878f (patch) | |
tree | 9ec8976874d458593aa8feb490013ee7f4985668 /ospf6d | |
parent | Merge pull request #2169 from piotrjurkiewicz/eigrp_feasibility (diff) | |
download | frr-257660b4577f6ab711889beec42bbff5526b878f.tar.xz frr-257660b4577f6ab711889beec42bbff5526b878f.zip |
ospf6d: add newline to show debugging cmd
Ticket:CM-20738
Testing Done:
Before:
OSPF6 debugging status:debug ospf6 lsa inter-router examine
debug ospf6 lsa as-external examine
debug ospf6 route memory
debug ospf6 border-routers
After:
OSPF6 debugging status:
debug ospf6 lsa inter-router examine
debug ospf6 lsa as-external examine
debug ospf6 route memory
debug ospf6 border-routers
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index 8d6d5b4a2..db61fe087 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -97,7 +97,7 @@ DEFUN_NOSH (show_debugging_ospf6, DEBUG_STR OSPF6_STR) { - vty_out(vty, "OSPF6 debugging status:"); + vty_out(vty, "OSPF6 debugging status:\n"); config_write_ospf6_debug(vty); |