From 61bfbd5119335141c0b8a0ebce6054246aeb3e44 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Tue, 3 Mar 2020 16:46:31 +0100 Subject: [PATCH] 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 --- bgpd/bgp_vty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.39.5