diff options
author | paul <paul> | 2003-09-29 19:54:53 +0000 |
---|---|---|
committer | paul <paul> | 2003-09-29 19:54:53 +0000 |
commit | 31a476c7e9014aa81dc0d50b4100431ab111bf3f (patch) | |
tree | 3f7fd8ed9010917cb3e93389d4e1d5a9649c5741 /ospfd/ospfd.c | |
parent | f3e05cda2a35abe1bcd9e3ad33083f4c78c0235a (diff) |
2003-09-29 Paul Jakma <paul@dishone.st>
* zebra/connected.c: revert the 'generic PtP' patch as it causes
far too many problems. People who use FreeSWAN should investigate
native linux ipsec.
* zebra/rt_netlink.c: ditto
* lib/if.c: ditto
* ripd/ripd.h: ditto
* ripd/ripd.c: ditto
* ripd/rip_interface.c: ditto
* ospfd/ospfd.c: ditto
* ospfd/ospf_snmp.c: ditto
* bgpd/bgp_nexthop.c: ditto
Diffstat (limited to 'ospfd/ospfd.c')
-rw-r--r-- | ospfd/ospfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospfd.c b/ospfd/ospfd.c index aeae8e13..77bb6a47 100644 --- a/ospfd/ospfd.c +++ b/ospfd/ospfd.c @@ -714,7 +714,7 @@ ospf_network_match_iface(struct connected *co, struct prefix *net) * PtP special case: network specified == iface peer addr -> ospf */ return ( - ((ifc_pointopoint (co) && + ((if_is_pointopoint (co) && IPV4_ADDR_SAME ( &(co->destination->u.prefix4), &(net->u.prefix4))) || prefix_match (net, co->address)) ? 1 : 0 @@ -756,7 +756,7 @@ ospf_network_run (struct ospf *ospf, struct prefix *p, struct ospf_area *area) if (CHECK_FLAG(co->flags,ZEBRA_IFA_SECONDARY)) continue; - if (ifc_pointopoint (co)) + if (if_is_pointopoint (co)) addr = co->destination; else addr = co->address; |