diff options
author | Maria Matejka <mq@jmq.cz> | 2020-04-12 21:54:20 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-10-13 19:09:04 +0200 |
commit | d5a32563df1653952937117133f09143929ff0c2 (patch) | |
tree | 215631e21d2db6e97a77d01f51ca8fa8639a8d3f /proto/ospf | |
parent | cee0cd148c9b71bf47d007c850193b5fbf9486c1 (diff) |
Preexport: No route modification, no linpool needed
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/ospf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index ebebf0ff..48e078ed 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -107,7 +107,7 @@ #include <stdlib.h> #include "ospf.h" -static int ospf_preexport(struct proto *P, rte **new, struct linpool *pool); +static int ospf_preexport(struct proto *P, rte *new); static void ospf_make_tmp_attrs(struct rte *rt, struct linpool *pool); static void ospf_store_tmp_attrs(struct rte *rt, struct linpool *pool); static void ospf_reload_routes(struct channel *C); @@ -484,11 +484,10 @@ ospf_disp(timer * timer) * import to the filters. */ static int -ospf_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED) +ospf_preexport(struct proto *P, rte *e) { struct ospf_proto *p = (struct ospf_proto *) P; struct ospf_area *oa = ospf_main_area(p); - rte *e = *new; /* Reject our own routes */ if (e->attrs->src->proto == P) |