diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-06-27 16:51:53 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-06-27 16:57:07 +0200 |
commit | 586c1800c447ff099d34889b23647c4733876d9b (patch) | |
tree | d2f3feec9aaabeffe2457d994f4c453e1d9e7782 /filter | |
parent | 45f28d85818f79790968725a945063228989bae7 (diff) |
Nest: Neighbor cache cleanups
Simplify neighbor cache code, fix several minor bugs, and improve
handling of ONLINK flag.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/filter.c b/filter/filter.c index 439fd5bf..0a2c26b8 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -974,7 +974,7 @@ interpret(struct f_inst *what) case SA_GW: { ip_addr ip = v1.val.ip; - neighbor *n = neigh_find(rta->src->proto, &ip, 0); + neighbor *n = neigh_find(rta->src->proto, ip, NULL, 0); if (!n || (n->scope == SCOPE_HOST)) runtime( "Invalid gw address" ); |