From: Ruben Kerkhof Date: Tue, 3 Mar 2020 15:46:31 +0000 (+0100) Subject: bgpd: fix typo in 'show bgp neighbors' output X-Git-Tag: base_7.4~301^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=61bfbd5119335141c0b8a0ebce6054246aeb3e44;p=matthieu%2Ffrr.git bgpd: fix typo in 'show bgp neighbors' output And fix a typo in a comment while we're at it Signed-off-by: Ruben Kerkhof --- diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 62767a603c..86d7c94d0e 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -11506,12 +11506,12 @@ static void bgp_show_peer(struct vty *vty, struct peer *p, bool use_json, vty_out(vty, "\n"); - /* Gracefull Restart */ + /* Graceful Restart */ if (CHECK_FLAG(p->cap, PEER_CAP_RESTART_RCV) || CHECK_FLAG(p->cap, PEER_CAP_RESTART_ADV)) { vty_out(vty, - " Graceful Restart Capabilty:"); + " Graceful Restart Capability:"); if (CHECK_FLAG(p->cap, PEER_CAP_RESTART_ADV)) vty_out(vty, " advertised");