diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-06-15 16:32:53 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-06-15 16:34:30 +0200 |
commit | 442321664b6a8e99b9d2a18a8c33826d4f55c508 (patch) | |
tree | 8a7312218a7fa6418046f8d9931a59349598184e /bgpd | |
parent | Merge pull request #11404 from donaldsharp/pim_rpf_debug_improvement (diff) | |
download | frr-442321664b6a8e99b9d2a18a8c33826d4f55c508.tar.xz frr-442321664b6a8e99b9d2a18a8c33826d4f55c508.zip |
bgpd, ospfd: Remove extra newline for `show debugging`
This extra newline was adding a weird output to `show debugging`
display where there would be extra newlines sometims and not
others. Make it consistent.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd')
-rw-r--r-- | bgpd/bgp_debug.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bgpd/bgp_debug.c b/bgpd/bgp_debug.c index 51e12cb64..8976b3b67 100644 --- a/bgpd/bgp_debug.c +++ b/bgpd/bgp_debug.c @@ -2277,7 +2277,6 @@ DEFUN_NOSH (show_debugging_bgp, if (BGP_DEBUG(bfd, BFD_LIB)) vty_out(vty, " BGP BFD library debugging is on\n"); - vty_out(vty, "\n"); return CMD_SUCCESS; } |