summaryrefslogtreecommitdiffstats
path: root/proto/ospf/topology.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-12-03 23:20:02 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-12-03 23:20:02 +0100
commit98955023926734c7ecf79f9b8d004baff5225a78 (patch)
treebb065c8f63fc2c78e41ea5fa48c8debb5c8c10cf /proto/ospf/topology.c
parentbb3c7c6d22c48cd78b4c5b77a78ff1b92adca053 (diff)
downloadbird-98955023926734c7ecf79f9b8d004baff5225a78.tar
bird-98955023926734c7ecf79f9b8d004baff5225a78.zip
Fixes OSPFv2 build.
Diffstat (limited to 'proto/ospf/topology.c')
-rw-r--r--proto/ospf/topology.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index 5d437d9..5b6d631 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -635,14 +635,14 @@ static inline int
check_sum_net_lsaid_collision(struct fib_node *fn, struct top_hash_entry *en)
{
struct ospf_lsa_sum *sum = en->lsa_body;
- return (fn->pxlen != ipa_mklen(sum->netmask))
+ return fn->pxlen != ipa_mklen(sum->netmask);
}
static inline int
check_ext_lsaid_collision(struct fib_node *fn, struct top_hash_entry *en)
{
struct ospf_lsa_ext *ext = en->lsa_body;
- return (fn->pxlen != ipa_mklen(ext->netmask))
+ return fn->pxlen != ipa_mklen(ext->netmask);
}
#else /* OSPFv3 */