summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_route.h
diff options
context:
space:
mode:
authorCassiano Campes <cassiano.campes@venkonetworks.com>2024-03-12 02:33:16 +0100
committerCassiano Campes <cassiano.campes@venkonetworks.com>2024-03-19 20:36:14 +0100
commitf3dd00510fc406621278d50791eb9b5548c4f4b5 (patch)
treeecfa5253972adafcba9d14febbea8e6bf2e66407 /bgpd/bgp_route.h
parentMerge pull request #15558 from opensourcerouting/fix/bgp_dynamic_neighbors_de... (diff)
downloadfrr-f3dd00510fc406621278d50791eb9b5548c4f4b5.tar.xz
frr-f3dd00510fc406621278d50791eb9b5548c4f4b5.zip
bgpd: add missing white-space between route short status and network columns
When running `show ip bgp` command, the 'route short status' and 'network' columns do not have white-space between them. Old show: Network Next Hop Metric LocPrf Weight Path *>i1.1.1.1/32 10.1.12.111 0 100 0 i New show: Network Next Hop Metric LocPrf Weight Path *>i 1.1.1.1/32 10.1.12.111 0 100 0 i Added white-space to enhance readability between them. Signed-off-by: Cassiano Campes <cassiano.campes@venkonetworks.com>
Diffstat (limited to 'bgpd/bgp_route.h')
-rw-r--r--bgpd/bgp_route.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h
index 2d82f0f20..9be3f063f 100644
--- a/bgpd/bgp_route.h
+++ b/bgpd/bgp_route.h
@@ -66,8 +66,8 @@ enum bgp_show_adj_route_type {
#define BGP_SHOW_NCODE_HEADER "Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self\n"
#define BGP_SHOW_RPKI_HEADER \
"RPKI validation codes: V valid, I invalid, N Not found\n\n"
-#define BGP_SHOW_HEADER " Network Next Hop Metric LocPrf Weight Path\n"
-#define BGP_SHOW_HEADER_WIDE " Network Next Hop Metric LocPrf Weight Path\n"
+#define BGP_SHOW_HEADER " Network Next Hop Metric LocPrf Weight Path\n"
+#define BGP_SHOW_HEADER_WIDE " Network Next Hop Metric LocPrf Weight Path\n"
/* Maximum number of labels we can process or send with a prefix. We
* really do only 1 for MPLS (BGP-LU) but we can do 2 for EVPN-VxLAN.