diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-05-08 09:44:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-08 09:44:58 -0400 |
| commit | a6f1ad43f0939c2cbb6d68fd42b485eea520a144 (patch) | |
| tree | 8a2f26747ebe18370063c5b75e12ce8cbbadc8a4 /zebra/zebra_router.c | |
| parent | bcf7b9e1c9d2f3dbbcf7904133b5475a7b858115 (diff) | |
| parent | 91e6f25bc0ac835e2724a463e495f01cff5e04ea (diff) | |
Merge pull request #6362 from donaldsharp/typedef_i_hatez_it
Typedef replacements
Diffstat (limited to 'zebra/zebra_router.c')
| -rw-r--r-- | zebra/zebra_router.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_router.c b/zebra/zebra_router.c index ea2b6752b3..ab426ae603 100644 --- a/zebra/zebra_router.c +++ b/zebra/zebra_router.c @@ -93,7 +93,7 @@ struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf, { struct zebra_router_table finder; struct zebra_router_table *zrt; - rib_table_info_t *info; + struct rib_table_info *info; memset(&finder, 0, sizeof(finder)); finder.afi = afi; @@ -133,7 +133,7 @@ void zebra_router_show_table_summary(struct vty *vty) vty_out(vty, "---------------------------------------------------------------------------\n"); RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) { - rib_table_info_t *info = route_table_get_info(zrt->table); + struct rib_table_info *info = route_table_get_info(zrt->table); vty_out(vty, "%-16s%5d %9d %7s %15s %8d %10lu\n", info->zvrf->vrf->name, zrt->ns_id, info->zvrf->vrf->vrf_id, |
