diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-11-28 07:53:56 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-28 07:53:56 +0200 | 
| commit | dafe8e9d46c188449e422b45a7bcbaf7b36c6b58 (patch) | |
| tree | aaf988544a20dd7c965db76ff51009d855abf21a | |
| parent | 61bcff83b67a6fbbb123d59de47725339b918d35 (diff) | |
| parent | 9c78057ef9648fdfb66f7174cc7e88a1afaca3bc (diff) | |
Merge pull request #17524 from FRRouting/mergify/bp/stable/10.0/pr-17510
bgpd: fix use single whitespace when displaying flowspec entries (backport #17510)
| -rw-r--r-- | bgpd/bgp_flowspec_vty.c | 2 | 
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;  }  | 
