summaryrefslogtreecommitdiff
path: root/proto/ospf/lsupd.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2012-10-31 17:14:35 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2012-10-31 17:14:35 +0100
commitdd4da6f640fb581cbd7d1ca537bf382558492b8e (patch)
tree13584e9c9e5f9bd30022563a0257db25f96b74b0 /proto/ospf/lsupd.c
parent8249ad9b304ea88b29e3aea76ebe49bb50348aaa (diff)
Fixes another bug in OSPFv3 vlinks.
Diffstat (limited to 'proto/ospf/lsupd.c')
-rw-r--r--proto/ospf/lsupd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c
index 633ed533..a5da4251 100644
--- a/proto/ospf/lsupd.c
+++ b/proto/ospf/lsupd.c
@@ -123,7 +123,7 @@ ospf_lsa_flooding_allowed(struct ospf_lsa_header *lsa, u32 domain, struct ospf_i
switch (scope)
{
case LSA_SCOPE_LINK:
- return ifa->iface->index == domain;
+ return ifa->iface_id == domain;
case LSA_SCOPE_AREA:
return ifa->oa->areaid == domain;