From 8edf2361f9c4bd745a1249db3f66dfc079dd2ca1 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 3 Aug 1999 19:30:49 +0000 Subject: Cleaned up handling of interface patterns: o Parsing of interface patterns moved to generic code, introduced this_ipatt which works similarly to this_iface. o Interface patterns now support selection by both interface names and primary IP addresses. o Proto `direct' updated. o RIP updated as well, it also seems the memory corruption bug there is gone. --- nest/rt-dev.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nest/rt-dev.c') diff --git a/nest/rt-dev.c b/nest/rt-dev.c index 63548fc7..c07b5de6 100644 --- a/nest/rt-dev.c +++ b/nest/rt-dev.c @@ -23,7 +23,9 @@ dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad) { struct rt_dev_config *P = (void *) p->cf; - if (!iface_patt_match(&P->iface_list, ad->iface)) + if (!EMPTY_LIST(P->iface_list) && + !iface_patt_match(&P->iface_list, ad->iface)) + /* Empty list is automagically treated as "*" */ return; if (c & IF_CHANGE_DOWN) { -- cgit v1.2.3