From 32749f493fdaea31f70d8586597febacd2c511d9 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Thu, 14 Dec 2000 01:04:51 +0000 Subject: [PATCH] Hmm, nasty bug, LSUPD was not well flooded via PTP interfaces. :-( --- proto/ospf/lsupd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index f0e6e5a2..2293081f 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -157,7 +157,8 @@ flood_lsa(struct ospf_neighbor *n, struct ospf_lsa_header *hn, } else { - if((ifa->state==OSPF_IS_BACKUP)||(ifa->state==OSPF_IS_DR)) + if((ifa->state==OSPF_IS_BACKUP)||(ifa->state==OSPF_IS_DR)|| + (ifa->type==OSPF_IT_PTP)) sk_send_to(sk,len, AllSPFRouters, OSPF_PROTO); else sk_send_to(sk,len, AllDRouters, OSPF_PROTO); }