Skip to content

Commit

Permalink
bgpd: fix blank line in running-config with bmp listener cmd
Browse files Browse the repository at this point in the history
An extra blank line is added in show running-config with BMP:

> ubuntu2204hwe(config)# router bgp 65500
> ubuntu2204hwe(config-router)# bmp targets tgt
> ubuntu2204hwe(config-bgp-bmp)# bmp monitor ipv4 unicast pre-policy
> ubuntu2204hwe(config-bgp-bmp)# bmp listener 192.0.2.100 port 44
> ubuntu2204hwe(config-bgp-bmp)# do show running-config
>
> router bgp 65500
> [..]
>  bmp targets tgt
>   bmp monitor ipv4 unicast pre-policy
>                                       <-- blank line
>   bmp listener 192.0.2.100 port 44
>  exit

Remove the blank line.

Fixes: ed18356 ("bgpd/bmp: BMP implementation")
Signed-off-by: Philippe Guibert <[email protected]>
(cherry picked from commit 9a33ee1)
  • Loading branch information
pguibert6WIND authored and mergify[bot] committed Oct 29, 2024
1 parent 4f89c0a commit 878890f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bgpd/bgp_bmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2828,8 +2828,7 @@ static int bmp_config_write(struct bgp *bgp, struct vty *vty)
afi2str_lower(afi), safi2str(safi));
}
frr_each (bmp_listeners, &bt->listeners, bl)
vty_out(vty, " \n bmp listener %pSU port %d\n",
&bl->addr, bl->port);
vty_out(vty, " bmp listener %pSU port %d\n", &bl->addr, bl->port);

frr_each (bmp_actives, &bt->actives, ba) {
vty_out(vty, " bmp connect %s port %u min-retry %u max-retry %u",
Expand Down

0 comments on commit 878890f

Please sign in to comment.