diff options
| author | Russ White <russ@riw.us> | 2024-10-29 10:26:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-29 10:26:34 -0400 |
| commit | 5a19a51f098a0ff563b3d5edd3dc9aef47eb01ba (patch) | |
| tree | 9b8eb10daa403d2ad93c3f6e20bc08e0b843f6f6 | |
| parent | 58f9e8ebc72c26429340c0d6df2ed41ea19c9f0e (diff) | |
| parent | 5241a3652b109bb5673e75cba7098ecd2cbf4970 (diff) | |
Merge pull request #17284 from FRRouting/mergify/bp/stable/10.0/pr-17278
bgpd: fix blank line in running-config with bmp listener cmd (backport #17278)
| -rw-r--r-- | bgpd/bgp_bmp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bgpd/bgp_bmp.c b/bgpd/bgp_bmp.c index 1de48a072a..0ad85c984d 100644 --- a/bgpd/bgp_bmp.c +++ b/bgpd/bgp_bmp.c @@ -2769,8 +2769,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", |
