mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-24 14:56:05 +00:00
bgpd: Remove redundant whitespace before printing the reason of the failed peer
Before: ``` Neighbor EstdCnt DropCnt ResetTime Reason 127.0.0.1 0 0 never Waiting for peer OPEN (n/a) ``` After: ``` Neighbor EstdCnt DropCnt ResetTime Reason 127.0.0.1 0 0 never Waiting for peer OPEN (n/a) ``` Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
c25c7e929d
commit
b5bd626a82
@ -11661,10 +11661,9 @@ static void bgp_show_peer_reset(struct vty * vty, struct peer *peer,
|
||||
BGP_NOTIFY_CEASE_HARD_RESET)
|
||||
: "");
|
||||
} else {
|
||||
vty_out(vty, " %s (%s)\n",
|
||||
vty_out(vty, " %s (%s)\n",
|
||||
peer_down_str[(int)peer->last_reset],
|
||||
peer->soft_version ? peer->soft_version
|
||||
: "n/a");
|
||||
peer->soft_version ? peer->soft_version : "n/a");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user