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/babel | |
parent | cee0cd148c9b71bf47d007c850193b5fbf9486c1 (diff) |
Preexport: No route modification, no linpool needed
Diffstat (limited to 'proto/babel')
-rw-r--r-- | proto/babel/babel.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 1e87212c..68cc62f1 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -2231,10 +2231,9 @@ babel_kick_timer(struct babel_proto *p) static int -babel_preexport(struct proto *P, struct rte **new, struct linpool *pool UNUSED) +babel_preexport(struct proto *P, struct rte *new) { - struct rta *a = (*new)->attrs; - + struct rta *a = new->attrs; /* Reject our own unreachable routes */ if ((a->dest == RTD_UNREACHABLE) && (a->src->proto == P)) return -1; |