diff options
Diffstat (limited to 'proto/babel/babel.c')
-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 174fc9e2..0444e7a4 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; |