diff options
| author | Russ White <russ@riw.us> | 2018-03-26 13:10:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-26 13:10:08 -0400 |
| commit | cdd174e8d20265b40dedc20a5978664d8fab2621 (patch) | |
| tree | c39140c793f05a920338012c4111563a3ea48661 /ospf6d/ospf6_abr.c | |
| parent | 4adfefaeaca8d29ded65094702f2ee9b1839f02c (diff) | |
| parent | c601fa3f9d07ab5f36cbc019da1338f71a3d93e3 (diff) | |
Merge pull request #1958 from chiragshah6/ospfv3_dev
ospf6d: Retain inter area border router type-4
Diffstat (limited to 'ospf6d/ospf6_abr.c')
| -rw-r--r-- | ospf6d/ospf6_abr.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ospf6d/ospf6_abr.c b/ospf6d/ospf6_abr.c index 67d18566ae..7ffb80724b 100644 --- a/ospf6d/ospf6_abr.c +++ b/ospf6d/ospf6_abr.c @@ -912,8 +912,9 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa) ospf6_route_merge_nexthops(old, route); if (is_debug) - zlog_debug("%s: Update route: %s nh count %u", - __PRETTY_FUNCTION__, buf, + zlog_debug("%s: Update route: %s old cost %u new cost %u nh count %u", + __PRETTY_FUNCTION__, + buf, old->path.cost, route->path.cost, listcount(route->nh_list)); /* Update RIB/FIB */ @@ -924,7 +925,8 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa) ospf6_route_delete(route); } else { if (is_debug) - zlog_debug("Install route: %s nh count %u", buf, + zlog_debug("%s: Install route: %s cost %u nh count %u", + __PRETTY_FUNCTION__, buf, route->path.cost, listcount(route->nh_list)); /* ospf6_ia_add_nw_route (table, &prefix, route); */ ospf6_route_add(route, table); |
