2003-09-24 Thomas Giger TGC <thomas.giger@tgc.de>

* ospf_packet.c (ospf_associate_packet_vl): pass NULL struct
	  interface to ospf_if_lookup_by_local_addr() rather than the
	  receiving interface ifp, packets for VL's could come in any
	  interface. See quagga-dev 250.
This commit is contained in:
paul 2003-09-23 23:20:08 +00:00
parent 50d649aaf9
commit 2ca35ddb04

View File

@ -2009,8 +2009,8 @@ ospf_associate_packet_vl (struct ospf *ospf,
if ((rcv_oi = oi) == NULL)
{
if ((rcv_oi = ospf_if_lookup_by_local_addr (ospf, ifp,
iph->ip_dst)) == NULL)
if ((rcv_oi = ospf_if_lookup_by_local_addr (ospf, NULL,
iph->ip_dst)) == NULL)
return NULL;
}