diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2020-02-12 11:29:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-12 11:29:22 -0500 |
| commit | efa618369a8cd05c245fae58e125a3451c098b66 (patch) | |
| tree | e4d705185420dd43f140837a9f08f4e230408dc5 /zebra/zebra_rib.c | |
| parent | f94ed830df98218447f00b97f856de811bfcc4a2 (diff) | |
| parent | 0641a955d7fe5a8f4d088deb32ad2206de6afb88 (diff) | |
Merge pull request #5794 from mjstapp/remove_nexthop_matched_flag
lib,zebra: remove unused MATCHED nexthop flag
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index f3112cc9c0..57bd986872 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -2450,7 +2450,7 @@ void _route_entry_dump(const char *func, union prefixconstptr pp, INET6_ADDRSTRLEN); break; } - zlog_debug("%s: %s %s[%u] vrf %s(%u) with flags %s%s%s%s%s%s", + zlog_debug("%s: %s %s[%u] vrf %s(%u) with flags %s%s%s%s%s", straddr, (nexthop->rparent ? " NH" : "NH"), nhname, nexthop->ifindex, vrf ? vrf->name : "Unknown", nexthop->vrf_id, @@ -2466,9 +2466,6 @@ void _route_entry_dump(const char *func, union prefixconstptr pp, (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK) ? "ONLINK " : ""), - (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_MATCHED) - ? "MATCHED " - : ""), (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_DUPLICATE) ? "DUPLICATE " : "")); |
