mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
Merge 53dfeab287
into 3dd4d417be
This commit is contained in:
commit
d9a0837483
|
@ -3049,6 +3049,14 @@ static bool zebra_nhg_nexthop_compare(const struct nexthop *nhop,
|
|||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
zlog_debug("%s: %pRN Old is not active going to the next one",
|
||||
__func__, rn);
|
||||
|
||||
if (!CHECK_FLAG(nhop->flags, NEXTHOP_FLAG_ACTIVE) &&
|
||||
nexthop_same(nhop, old_nhop)) {
|
||||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
zlog_debug("%s: %pRN new is not active going to the next one",
|
||||
__func__, rn);
|
||||
nhop = nhop->next;
|
||||
}
|
||||
old_nhop = old_nhop->next;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue