summaryrefslogtreecommitdiff
path: root/isisd/isis_route.c
diff options
context:
space:
mode:
authorhasso <hasso>2005-10-01 06:03:04 +0000
committerhasso <hasso>2005-10-01 06:03:04 +0000
commit13fb40ac99823c405137a42d7666785fd7ac641a (patch)
tree2332722bf346447bd5bfebf3fdc0fb97dc85502b /isisd/isis_route.c
parent10fc9183686d9d7183949c9e74a1c51d98ddb67e (diff)
* 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.
Diffstat (limited to 'isisd/isis_route.c')
-rw-r--r--isisd/isis_route.c3
1 files changed, 2 insertions, 1 deletions
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
{