diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-03 16:46:31 +0100 |
---|---|---|
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-03 16:47:14 +0100 |
commit | 61bfbd5119335141c0b8a0ebce6054246aeb3e44 (patch) | |
tree | 98e1d717831ab7fd9bd794ff089e0973905f4584 | |
parent | Merge pull request #5893 from donaldsharp/clang_mc_clang (diff) | |
download | frr-61bfbd5119335141c0b8a0ebce6054246aeb3e44.tar.xz frr-61bfbd5119335141c0b8a0ebce6054246aeb3e44.zip |
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 <ruben@rubenkerkhof.com>
-rw-r--r-- | bgpd/bgp_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 62767a603..86d7c94d0 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"); |