summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Guibert <philippe.guibert@6wind.com>2024-11-26 14:19:34 +0100
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-11-26 18:12:38 +0000
commit8cbd80ac8f99e5362e74d4c681799447494fdf12 (patch)
treeee60c0481147bd00792419f0244f935e2c2942ae
parente3048179b1c07e491400594f883f2c22c79e6c7d (diff)
bgpd: fix use single whitespace when displaying flowspec entries
There is an extra space in the 'Displayed' line of show bgp command, that should not be present. Fix this by being consistent with the output of the other address families. Fixes: ("a1baf9e84f71") bgpd: Use single whitespace when displaying show bgp summary Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com> (cherry picked from commit 561debab5430ac85e8e42e839312d213479a767a)
-rw-r--r--bgpd/bgp_flowspec_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_flowspec_vty.c b/bgpd/bgp_flowspec_vty.c
index d4ccca84bb..3d2dda4ee4 100644
--- a/bgpd/bgp_flowspec_vty.c
+++ b/bgpd/bgp_flowspec_vty.c
@@ -441,7 +441,7 @@ int bgp_show_table_flowspec(struct vty *vty, struct bgp *bgp, afi_t afi,
}
if (total_count && !use_json)
vty_out(vty,
- "\nDisplayed %ld flowspec entries\n",
+ "\nDisplayed %ld flowspec entries\n",
total_count);
return CMD_SUCCESS;
}