diff options
author | paul <paul> | 2003-08-27 06:45:32 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-27 06:45:32 +0000 |
commit | 537d8ea92bbf96086e03a0da5a7d26ee4b92e0cc (patch) | |
tree | 392b903719b0ebcdc793aad7f35bdd5801e49a84 /ospfd | |
parent | fd6ff2fc6b221f2c2c30ef0d29f5e938c1737577 (diff) |
2003-08-27 Jay Fenlason <fenlason@redhat.com>
* bgpd/bgp_routemap.c: attr->med is type u_in32_t, should be
compared with UINT32_MAX
* ospfd/ospfd.c: remove redundant assert
* zebra/rtadv.c: add missing include for zebra/rib.h
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospfd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ospfd/ospfd.c b/ospfd/ospfd.c index 4418c777..aeae8e13 100644 --- a/ospfd/ospfd.c +++ b/ospfd/ospfd.c @@ -765,8 +765,7 @@ ospf_network_run (struct ospf *ospf, struct prefix *p, struct ospf_area *area) && ! ospf_if_is_configured (ospf, &(addr->u.prefix4)) && ospf_network_match_iface(co,p)) { - struct ospf_interface *oi; - assert(co); + struct ospf_interface *oi; oi = ospf_if_new (ospf, ifp, co->address); oi->connected = co; |