From 13fb40ac99823c405137a42d7666785fd7ac641a Mon Sep 17 00:00:00 2001 From: hasso Date: Sat, 1 Oct 2005 06:03:04 +0000 Subject: * isis_adjacency.c: Stop expire timer while deleting adjacency. * isis_events.c: Stop pseudo LSP thread while resigning circuit from level. * isis_route.c: Fix compiling with EXTREME_DEBUG. Mark route as not in sync with zebra if it's changed. * isis_spf.c: Schedule route validating etc even if tent was empty. It's probably because we just don't have any adjacencies. * isisd.c: Write minimum spf interval into configuration. --- isisd/isis_route.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'isisd/isis_route.c') diff --git a/isisd/isis_route.c b/isisd/isis_route.c index d799ea0e..7d0239ca 100644 --- a/isisd/isis_route.c +++ b/isisd/isis_route.c @@ -129,6 +129,7 @@ static void nexthops_print (struct list *nhs) { struct listnode *node; + struct isis_nexthop *nh; for (ALL_LIST_ELEMENTS_RO (nhs, node, nh)) nexthop_print (nh); @@ -139,7 +140,6 @@ nexthops_print (struct list *nhs) static struct isis_nexthop6 * isis_nexthop6_new (struct in6_addr *ip6, unsigned int ifindex) { - struct isis_nexthop6 *nexthop6; nexthop6 = XCALLOC (MTYPE_ISIS_NEXTHOP6, sizeof (struct isis_nexthop6)); @@ -523,6 +523,7 @@ isis_route_create (struct prefix *prefix, u_int32_t cost, u_int32_t depth, isis_route_info_merge (rinfo_new, rinfo_old, family); isis_route_info_delete (rinfo_new); route_info = rinfo_old; + UNSET_FLAG (route_info->flag, ISIS_ROUTE_FLAG_ZEBRA_SYNC); } else { -- cgit v1.2.1