summaryrefslogtreecommitdiffstats
path: root/bgpd
diff options
context:
space:
mode:
authormobash-rasool <mrasool@vmware.com>2023-06-02 04:41:55 +0200
committerGitHub <noreply@github.com>2023-06-02 04:41:55 +0200
commite4bdeb6aca5650612cc5e804dc843cfd29443474 (patch)
tree0b1c0f89c544a02fd277d8736fd898060a002314 /bgpd
parentMerge pull request #13637 from yyuanam/fix_vtysh_core (diff)
parentbgpd: Fix typo in debug message (diff)
downloadfrr-e4bdeb6aca5650612cc5e804dc843cfd29443474.tar.xz
frr-e4bdeb6aca5650612cc5e804dc843cfd29443474.zip
Merge pull request #13660 from anlancs/bgpd-cleanup-12
bgpd: Fix typo in debug message
Diffstat (limited to 'bgpd')
-rw-r--r--bgpd/bgp_nht.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_nht.c b/bgpd/bgp_nht.c
index bda163d7a..d7b142988 100644
--- a/bgpd/bgp_nht.c
+++ b/bgpd/bgp_nht.c
@@ -547,7 +547,7 @@ static void bgp_process_nexthop_update(struct bgp_nexthop_cache *bnc,
char bnc_buf[BNC_FLAG_DUMP_SIZE];
zlog_debug(
- "%s(%u): Rcvd NH update %pFX(%u)%u) - metric %d/%d #nhops %d/%d flags %s",
+ "%s(%u): Rcvd NH update %pFX(%u)(%u) - metric %d/%d #nhops %d/%d flags %s",
bnc->bgp->name_pretty, bnc->bgp->vrf_id, &nhr->prefix,
bnc->ifindex, bnc->srte_color, nhr->metric, bnc->metric,
nhr->nexthop_num, bnc->nexthop_num,
@@ -849,7 +849,7 @@ void bgp_parse_nexthop_update(int command, vrf_id_t vrf_id)
if (!bnc_nhc) {
if (BGP_DEBUG(nht, NHT))
zlog_debug(
- "parse nexthop update(%pFX(%u)(%s)): bnc info not found for nexthop cache",
+ "parse nexthop update %pFX(%u)(%s): bnc info not found for nexthop cache",
&nhr.prefix, nhr.srte_color, bgp->name_pretty);
} else
bgp_process_nexthop_update(bnc_nhc, &nhr, false);
@@ -860,7 +860,7 @@ void bgp_parse_nexthop_update(int command, vrf_id_t vrf_id)
if (!bnc_import) {
if (BGP_DEBUG(nht, NHT))
zlog_debug(
- "parse nexthop update(%pFX(%u)(%s)): bnc info not found for import check",
+ "parse nexthop update %pFX(%u)(%s): bnc info not found for import check",
&nhr.prefix, nhr.srte_color, bgp->name_pretty);
} else
bgp_process_nexthop_update(bnc_import, &nhr, true);