diff options
Diffstat (limited to 'proto/ospf/dbdes.c')
-rw-r--r-- | proto/ospf/dbdes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index 2b65b1a..6e84edd 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -80,7 +80,7 @@ ospf_dbdes_send(struct ospf_neighbor *n) struct top_hash_entry *en; en = (struct top_hash_entry *) sn; - if ((n->ifa->type != OSPF_IT_VLINK) && (en->lsa.type != LSA_T_EXT)) + if ((n->ifa->type != OSPF_IT_VLINK) || (en->lsa.type != LSA_T_EXT)) { htonlsah(&(en->lsa), lsa); DBG("Working on: %d\n", i); |