mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Nest: Fix bug in export table
Exported route may be in modified state, we need to get cached one for rte_same() and rta_clone() to work properly.
This commit is contained in:
@@ -2705,6 +2705,11 @@ rte_update_out(struct channel *c, const net_addr *n, rte *new, rte *old0, int re
|
|||||||
{
|
{
|
||||||
net = net_get(tab, n);
|
net = net_get(tab, n);
|
||||||
src = new->attrs->src;
|
src = new->attrs->src;
|
||||||
|
|
||||||
|
rte_store_tmp_attrs(new, rte_update_pool, NULL);
|
||||||
|
|
||||||
|
if (!rta_is_cached(new->attrs))
|
||||||
|
new->attrs = rta_lookup(new->attrs);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user