From: Ondrej Filip Date: Thu, 14 Dec 2000 01:04:51 +0000 (+0000) Subject: Hmm, nasty bug, LSUPD was not well flooded via PTP interfaces. :-( X-Git-Tag: v1.2.0~479 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32749f493fdaea31f70d8586597febacd2c511d9;p=thirdparty%2Fbird.git Hmm, nasty bug, LSUPD was not well flooded via PTP interfaces. :-( --- diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index f0e6e5a2b..2293081f0 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); }