diff options
| author | Mark Stapp <mjs@voltanet.io> | 2021-03-15 08:36:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-15 08:36:23 -0400 |
| commit | cc01c03434dbcbd532043584a9b91e60acd2afe3 (patch) | |
| tree | f669a337b6e646db5412bf4db193fcd940b5b1b2 /zebra/zebra_rib.c | |
| parent | 8b87b2f4f6fd5e3109cfdca7f5270b2b1612faeb (diff) | |
| parent | ad6f7449ef178417384e2da979ec094372de6dba (diff) | |
Merge pull request #8230 from donaldsharp/flex_more
more switchover to using our builtin printf functionality
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 128edd9fd3..bc3c68638d 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -2830,8 +2830,10 @@ void _route_entry_dump(const char *func, union prefixconstptr pp, struct vrf *vrf = vrf_lookup_by_id(re->vrf_id); struct nexthop_group *nhg; + prefix2str(pp, straddr, sizeof(straddr)); + zlog_debug("%s: dumping RE entry %p for %s%s%s vrf %s(%u)", func, - (const void *)re, prefix2str(pp, straddr, sizeof(straddr)), + (const void *)re, straddr, is_srcdst ? " from " : "", is_srcdst ? prefix2str(src_pp, srcaddr, sizeof(srcaddr)) : "", |
