summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuben Kerkhof <ruben@rubenkerkhof.com>2020-03-03 16:46:31 +0100
committerRuben Kerkhof <ruben@rubenkerkhof.com>2020-03-03 16:47:14 +0100
commit61bfbd5119335141c0b8a0ebce6054246aeb3e44 (patch)
tree98e1d717831ab7fd9bd794ff089e0973905f4584
parentMerge pull request #5893 from donaldsharp/clang_mc_clang (diff)
downloadfrr-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.c4
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");