diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2018-01-18 10:54:52 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-18 10:54:52 -0600 |
| commit | 0c6a8fb9ecb0226ab14a8f81ab2e8e6f7ac9d5b4 (patch) | |
| tree | 04f0eb2aab49d010c8aed060b0cc670c79501a1c /ospf6d/ospf6_intra.c | |
| parent | 9ee9eb80663fa45c623ad28bf5f08347a65fb12c (diff) | |
| parent | 064d4355ca82c924ec928c67150f243f17f56139 (diff) | |
Merge pull request #1566 from chiragshah6/ospfv3_dev
ospf6d: Fix External routes ECMP
Diffstat (limited to 'ospf6d/ospf6_intra.c')
| -rw-r--r-- | ospf6d/ospf6_intra.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ospf6d/ospf6_intra.c b/ospf6d/ospf6_intra.c index b1d940952c..77653ea33f 100644 --- a/ospf6d/ospf6_intra.c +++ b/ospf6d/ospf6_intra.c @@ -1404,7 +1404,8 @@ void ospf6_intra_prefix_lsa_add(struct ospf6_lsa *lsa) if (IS_OSPF6_DEBUG_EXAMIN(INTRA_PREFIX)) { prefix2str(&route->prefix, buf, sizeof(buf)); - zlog_debug(" route %s add", buf); + zlog_debug(" route %s add with nh count %u", buf, + listcount(route->nh_list)); } ospf6_route_add(route, oa->route_table); |
