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 /nest/rt-show.c | |
parent | de86040b2cf4ec9bfbb64f0e208a19d4d7e51adc (diff) |
Filters always allocate from tmp_linpool
Diffstat (limited to 'nest/rt-show.c')
-rw-r--r-- | nest/rt-show.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-show.c b/nest/rt-show.c index 4e0c5602..7d02f52e 100644 --- a/nest/rt-show.c +++ b/nest/rt-show.c @@ -169,7 +169,7 @@ rt_show_net(struct cli *c, net *n, struct rt_show_data *d) * command may change the export filter and do not update routes. */ int do_export = (ic > 0) || - (f_run(ec->out_filter, &e, c->show_pool, FF_SILENT) <= F_ACCEPT); + (f_run(ec->out_filter, &e, FF_SILENT) <= F_ACCEPT); if (do_export != (d->export_mode == RSEM_EXPORT)) goto skip; @@ -182,7 +182,7 @@ rt_show_net(struct cli *c, net *n, struct rt_show_data *d) if (d->show_protocol && (d->show_protocol != e->src->proto)) goto skip; - if (f_run(d->filter, &e, c->show_pool, 0) > F_ACCEPT) + if (f_run(d->filter, &e, 0) > F_ACCEPT) goto skip; if (d->stats < 2) |