mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 13:27:53 +00:00
zebra-mpls: fix regression caused by wrong conflict resolution
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
0f12455901
commit
e5dd4bef5e
@ -775,6 +775,15 @@ vty_show_ip_route_detail (struct vty *vty, struct route_node *rn, int mcast)
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Label information */
|
||||||
|
if (nexthop->nh_label && nexthop->nh_label->num_labels)
|
||||||
|
{
|
||||||
|
vty_out (vty, " label %s",
|
||||||
|
mpls_label2str (nexthop->nh_label->num_labels,
|
||||||
|
nexthop->nh_label->label, buf, BUFSIZ));
|
||||||
|
}
|
||||||
|
|
||||||
vty_out (vty, "%s", VTY_NEWLINE);
|
vty_out (vty, "%s", VTY_NEWLINE);
|
||||||
}
|
}
|
||||||
vty_out (vty, "%s", VTY_NEWLINE);
|
vty_out (vty, "%s", VTY_NEWLINE);
|
||||||
@ -1015,6 +1024,14 @@ vty_show_ip_route (struct vty *vty, struct route_node *rn, struct rib *rib,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Label information */
|
||||||
|
if (nexthop->nh_label && nexthop->nh_label->num_labels)
|
||||||
|
{
|
||||||
|
vty_out (vty, " label %s",
|
||||||
|
mpls_label2str (nexthop->nh_label->num_labels,
|
||||||
|
nexthop->nh_label->label, buf, BUFSIZ));
|
||||||
|
}
|
||||||
|
|
||||||
if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_BLACKHOLE))
|
if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_BLACKHOLE))
|
||||||
vty_out (vty, ", bh");
|
vty_out (vty, ", bh");
|
||||||
if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_REJECT))
|
if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_REJECT))
|
||||||
|
Loading…
Reference in New Issue
Block a user