diff options
author | Maria Matejka <mq@ucw.cz> | 2022-04-10 18:55:15 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-04 15:37:41 +0200 |
commit | f2f3163f6c3fba7f9ef03640d7b2f6323873d2cc (patch) | |
tree | d0f3129250e783d347c63f649b02880abf569c1d /proto/mrt | |
parent | de86040b2cf4ec9bfbb64f0e208a19d4d7e51adc (diff) |
Filters always allocate from tmp_linpool
Diffstat (limited to 'proto/mrt')
-rw-r--r-- | proto/mrt/mrt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/mrt/mrt.c b/proto/mrt/mrt.c index 760cfa73..c595f298 100644 --- a/proto/mrt/mrt.c +++ b/proto/mrt/mrt.c @@ -525,7 +525,7 @@ mrt_rib_table_dump(struct mrt_table_dump_state *s, net *n, int add_path) continue; } - if (f_run(s->filter, &rt, s->linpool, 0) <= F_ACCEPT) + if (f_run(s->filter, &rt, 0) <= F_ACCEPT) mrt_rib_table_entry(s, rt); if (rt != rt0) |