diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-03 21:31:26 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-03 21:31:26 +0200 |
commit | 2918e61046388821c3d4411c602dc5b28ad59329 (patch) | |
tree | 3f950c7e2455c6809970bac3547795456893e704 /proto/ospf/lsupd.c | |
parent | b1b19433602f2a2ff58cfe2c1858ff883eee7b20 (diff) |
Fixes for OSPF NSSA handling.
Diffstat (limited to 'proto/ospf/lsupd.c')
-rw-r--r-- | proto/ospf/lsupd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index 948f4581..325a8d00 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -127,7 +127,7 @@ ospf_lsa_flooding_allowed(struct ospf_lsa_header *lsa, u32 domain, struct ospf_i case LSA_SCOPE_AS: if (ifa->type == OSPF_IT_VLINK) return 0; - if (ifa->oa->stub) + if (!oa_is_ext(ifa->oa)) return 0; return 1; |