diff options
author | Maria Matejka <mq@ucw.cz> | 2022-07-11 10:41:17 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-07-11 10:41:17 +0200 |
commit | d429bc5c841a8e9d4c81786973edfa56d20a407e (patch) | |
tree | 3857e7791fa51588b5f0de16bf05b65754349067 /proto/babel | |
parent | 7e9cede1fd1878fb4c00e793bccd0ca6c18ad452 (diff) | |
parent | beb5f78ada79ac90f31f2c4923302c74d9ab38bf (diff) |
Merge commit 'beb5f78a' into backport
Diffstat (limited to 'proto/babel')
-rw-r--r-- | proto/babel/babel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index d9ebfbad..7ea1aba8 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -2256,11 +2256,11 @@ babel_kick_timer(struct babel_proto *p) static int -babel_preexport(struct proto *P, struct rte *new) +babel_preexport(struct channel *C, struct rte *new) { struct rta *a = new->attrs; /* Reject our own unreachable routes */ - if ((a->dest == RTD_UNREACHABLE) && (new->src->proto == P)) + if ((a->dest == RTD_UNREACHABLE) && (new->src->proto == C->proto)) return -1; return 0; |