From 97d2875e999487bfe91f16c77c409ac0080541d3 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Wed, 8 Mar 2023 21:38:18 +0100 Subject: Fixed bad filter re-evaluation with import table if filtered->accepted The import table feed wasn't resetting the table-specific route values like REF_FILTERED and thus made the route look like filtered even though it should have been re-evaluated as accepted. --- nest/rt-table.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nest/rt-table.c') diff --git a/nest/rt-table.c b/nest/rt-table.c index 3428c122..218fcbe7 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -4406,8 +4406,10 @@ void channel_reload_export_bulk(struct rt_export_request *req, const net_addr *n for (uint i=0; isender == c->in_req.hook) { + /* Strip the table-specific information */ + rte new = rte_init_from(feed[i]); + /* Strip the later attribute layers */ - rte new = *feed[i]; while (new.attrs->next) new.attrs = new.attrs->next; -- cgit v1.2.3