From: hasso Date: Thu, 7 Aug 2003 09:29:13 +0000 (+0000) Subject: Temporary "fix" for segfault. See bug #29 in bugzilla for details. X-Git-Tag: frr-2.0-rc1~3941 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=622149ad4d5b041ed7f5af36fb798d842e3d8025;p=matthieu%2Ffrr.git Temporary "fix" for segfault. See bug #29 in bugzilla for details. --- diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index 34be69699e..a17f893daa 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -431,8 +431,10 @@ ospf_zebra_delete (struct prefix_ipv4 *p, struct ospf_route *or) } else { - api.ifindex_num = 1; - api.ifindex = &path->oi->ifp->ifindex; + /* Commented out by Hasso because it introduces segfault. + * See bug #29 in bugzilla for details. */ + /* api.ifindex_num = 1; + api.ifindex = &path->oi->ifp->ifindex; */ } zapi_ipv4_delete (zclient, p, &api);