Merge pull request #8241 from Jafaral/first_p

This commit is contained in:
Igor Ryzhov 2021-03-12 10:21:20 +03:00 committed by GitHub
commit c9912e0ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -844,6 +844,7 @@ static void vty_show_ip_route(struct vty *vty, struct route_node *rn,
const rib_dest_t *dest = rib_dest_from_rnode(rn);
const struct nexthop_group *nhg;
char up_str[MONOTIME_STRLEN];
bool first_p = true;
bool nhg_from_backup = false;
uptime = monotime(NULL);
@ -996,7 +997,9 @@ static void vty_show_ip_route(struct vty *vty, struct route_node *rn,
/* Nexthop information. */
for (ALL_NEXTHOPS_PTR(nhg, nexthop)) {
if (nhg_from_backup) {
if (first_p) {
first_p = false;
} else if (nhg_from_backup) {
vty_out(vty, " b%c%*c",
re_status_output_char(re, nexthop, is_fib),
len - 3 + (2 * nexthop_level(nexthop)), ' ');