diff options
author | Jan Maria Matejka <mq@ucw.cz> | 2017-08-22 13:47:01 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-10-17 16:52:18 +0200 |
commit | 4ae3ee1200b386219673c2168eae996c6207b077 (patch) | |
tree | 14d3eac03bd276c104b94382d54a466ce5cdde2a /proto/babel | |
parent | 289c1a7968c5a3c0a76124a89eb45de010f1c640 (diff) |
Babel: Interface address irrelevant for interface pattern matching.
Diffstat (limited to 'proto/babel')
-rw-r--r-- | proto/babel/babel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 67a59df6..a0ec3629 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -1570,7 +1570,7 @@ babel_if_notify(struct proto *P, unsigned flags, struct iface *iface) if (flags & IF_CHANGE_UP) { - struct babel_iface_config *ic = (void *) iface_patt_find(&cf->iface_list, iface, iface->addr); + struct babel_iface_config *ic = (void *) iface_patt_find(&cf->iface_list, iface, NULL); /* we only speak multicast */ if (!(iface->flags & IF_MULTICAST)) |