Merge pull request #17522 from FRRouting/mergify/bp/stable/10.2/pr-17510

bgpd: fix use single whitespace when displaying flowspec entries (backport #17510)
This commit is contained in:
Donatas Abraitis 2024-11-28 07:53:22 +02:00 committed by GitHub
commit 1e23469c99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}