summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_mpath.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2022-12-02 09:20:10 +0100
committerDonatas Abraitis <donatas@opensourcerouting.org>2022-12-02 09:20:10 +0100
commitc4cb7019c33446bd806563fa8ca6252b6930ecad (patch)
tree52a176b983f958bd055bf87ed73b81cbd2286673 /bgpd/bgp_mpath.c
parentMerge pull request #12427 from mjstapp/pim6d_enabled (diff)
downloadfrr-c4cb7019c33446bd806563fa8ca6252b6930ecad.tar.xz
frr-c4cb7019c33446bd806563fa8ca6252b6930ecad.zip
bgpd: Do not print cumulated bandwidth prefixed with `u`
This seems just a mistake, drop `u` prefix. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_mpath.c')
-rw-r--r--bgpd/bgp_mpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_mpath.c b/bgpd/bgp_mpath.c
index 52f6b64c2..32a5e14b1 100644
--- a/bgpd/bgp_mpath.c
+++ b/bgpd/bgp_mpath.c
@@ -567,7 +567,7 @@ void bgp_path_info_mpath_update(struct bgp *bgp, struct bgp_dest *dest,
if (debug)
zlog_debug(
- "%pRN(%s): starting mpath update, newbest %s num candidates %d old-mpath-count %d old-cum-bw u%" PRIu64,
+ "%pRN(%s): starting mpath update, newbest %s num candidates %d old-mpath-count %d old-cum-bw %" PRIu64,
bgp_dest_to_rnode(dest), bgp->name_pretty,
new_best ? new_best->peer->host : "NONE",
mp_list ? listcount(mp_list) : 0, old_mpath_count,
@@ -750,7 +750,7 @@ void bgp_path_info_mpath_update(struct bgp *bgp, struct bgp_dest *dest,
if (debug)
zlog_debug(
- "%pRN(%s): New mpath count (incl newbest) %d mpath-change %s all_paths_lb %d cum_bw u%" PRIu64,
+ "%pRN(%s): New mpath count (incl newbest) %d mpath-change %s all_paths_lb %d cum_bw %" PRIu64,
bgp_dest_to_rnode(dest), bgp->name_pretty,
mpath_count, mpath_changed ? "YES" : "NO",
all_paths_lb, cum_bw);