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 /ospfd | |
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 'ospfd')
-rw-r--r-- | ospfd/ospf_dump.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index 4d76181c6..258a93fb1 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -1850,8 +1850,6 @@ static int show_debugging_ospf_common(struct vty *vty) if (IS_DEBUG_OSPF(client_api, CLIENT_API) == OSPF_DEBUG_CLIENT_API) vty_out(vty, " OSPF client-api debugging is on\n"); - vty_out(vty, "\n"); - return CMD_SUCCESS; } |