diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c index 6be0ca6c..aa6ef69b 100644 --- a/proto/ospf/topology.c +++ b/proto/ospf/topology.c @@ -67,7 +67,7 @@ originate_rt_lsa_body(struct ospf_area *oa, u16 *length, struct proto_ospf *p) { case OSPF_IT_PTP: /* rfc2328 - pg126 */ neigh=(struct ospf_neighbor *)HEAD(ifa->neigh_list); - if((neigh!=NULL) || (neigh->state==NEIGHBOR_FULL)) + if((!EMPTY_LIST(ifa->neigh_list)) && (neigh->state==NEIGHBOR_FULL)) { ln->type=LSART_PTP; ln->id=neigh->rid;