Skip to content

Commit

Permalink
bgpd: fix use single whitespace when displaying flowspec entries
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
pguibert6WIND committed Nov 26, 2024
1 parent 0bacbc6 commit 561deba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_flowspec_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 561deba

Please sign in to comment.