summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_interface.c
diff options
context:
space:
mode:
authorpaul <paul>2006-05-15 10:46:07 +0000
committerpaul <paul>2006-05-15 10:46:07 +0000
commit28be1fbcda95b306d6868306094659b9af8ecb2c (patch)
tree3904f48e19c4855254af1f7b572ece34607e3755 /ospf6d/ospf6_interface.c
parentb0b41b9c24e0ede27e2afee02a16ce7c5287b72e (diff)
downloadquagga-28be1fbcda95b306d6868306094659b9af8ecb2c.tar.bz2
quagga-28be1fbcda95b306d6868306094659b9af8ecb2c.tar.xz
[ospf6d] GNU Zebra #3562: ABR Crash fix, memory fixes, route table debugs
2006-02-22 Yasuhiro Ohara <yasu@sfc.wide.ad.jp> * valgrind check and memory fix * route table identification string added * ospf6d.h: version 0.9.7q
Diffstat (limited to 'ospf6d/ospf6_interface.c')
-rw-r--r--ospf6d/ospf6_interface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c
index 3ca5e2d1..95464b63 100644
--- a/ospf6d/ospf6_interface.c
+++ b/ospf6d/ospf6_interface.c
@@ -139,7 +139,8 @@ ospf6_interface_create (struct interface *ifp)
oi->lsdb->hook_remove = ospf6_interface_lsdb_hook;
oi->lsdb_self = ospf6_lsdb_create (oi);
- oi->route_connected = ospf6_route_table_create ();
+ oi->route_connected = OSPF6_ROUTE_TABLE_CREATE (INTERFACE, CONNECTED_ROUTES);
+ oi->route_connected->scope = oi;
/* link both */
oi->interface = ifp;