mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-25 18:00:25 +00:00
Merge pull request #15719 from pguibert6WIND/show_bgp_neighbors_extra_line
bgpd: fix 'show bgp neighbors' output
This commit is contained in:
commit
1596d99352
@ -12750,7 +12750,7 @@ static void bgp_show_neighbor_graceful_restart_remote_mode(struct vty *vty,
|
||||
if (json)
|
||||
json_object_string_add(json, "remoteGrMode", mode);
|
||||
else
|
||||
vty_out(vty, "%s\n", mode);
|
||||
vty_out(vty, "%s", mode);
|
||||
}
|
||||
|
||||
static void bgp_show_neighbor_graceful_restart_local_mode(struct vty *vty,
|
||||
@ -12782,7 +12782,7 @@ static void bgp_show_neighbor_graceful_restart_local_mode(struct vty *vty,
|
||||
if (json)
|
||||
json_object_string_add(json, "localGrMode", mode);
|
||||
else
|
||||
vty_out(vty, "%s\n", mode);
|
||||
vty_out(vty, "%s", mode);
|
||||
}
|
||||
|
||||
static void bgp_show_neighbor_graceful_restart_capability_per_afi_safi(
|
||||
|
Loading…
Reference in New Issue
Block a user