]> git.puffer.fish Git - matthieu/frr.git/commitdiff
*: Fix spelling of Gracefull
authorDonald Sharp <sharpd@nvidia.com>
Sat, 2 Apr 2022 11:27:28 +0000 (07:27 -0400)
committerDonald Sharp <sharpd@nvidia.com>
Sat, 2 Apr 2022 11:46:19 +0000 (07:46 -0400)
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
bgpd/bgp_vty.c
ospf6d/ospf6_top.h
ospfd/ospfd.h
tests/topotests/bgp_gr_functionality_topo1/test_bgp_gr_functionality_topo1-1.py
tests/topotests/bgp_gr_functionality_topo1/test_bgp_gr_functionality_topo1-2.py
tests/topotests/bgp_gr_functionality_topo1/test_bgp_gr_functionality_topo1-3.py
tests/topotests/bgp_gr_functionality_topo1/test_bgp_gr_functionality_topo1-4.py
zebra/zserv.c

index 3600e2f0ec3b64724cf4e0f24e936308594c6fc4..54237604bf5542ddff10229a33038481d5bf54ca 100644 (file)
@@ -13042,7 +13042,7 @@ static void bgp_show_peer(struct vty *vty, struct peer *p, bool use_json,
                        json_object_object_add(json_cap, "hostName",
                                               json_hname);
 
-                       /* Gracefull Restart */
+                       /* Graceful Restart */
                        if (CHECK_FLAG(p->cap, PEER_CAP_RESTART_RCV) ||
                            CHECK_FLAG(p->cap, PEER_CAP_RESTART_ADV)) {
                                if (CHECK_FLAG(p->cap, PEER_CAP_RESTART_ADV) &&
@@ -13452,7 +13452,7 @@ static void bgp_show_peer(struct vty *vty, struct peer *p, bool use_json,
                                                vty_out(vty, "none");
                                        vty_out(vty, "\n");
                                }
-                       } /* Gracefull Restart */
+                       } /* Graceful Restart */
                }
        }
 
index f06a3254ac4989b56883abe2bbb5fe23108704db..9dddd465fe2c6c78b592a61fe6326b1a20d272f0 100644 (file)
@@ -70,7 +70,7 @@ struct ospf6_gr_info {
 };
 
 struct ospf6_gr_helper {
-       /* Gracefull restart Helper supported configs*/
+       /* Graceful restart Helper supported configs*/
        /* Supported grace interval*/
        uint32_t supported_grace_time;
 
index 4f1b1493a6882141812a0e7495db262fefa5dbdc..268e4d6f8db895ff2d34d7e925e3c811e471cd4b 100644 (file)
@@ -337,7 +337,7 @@ struct ospf {
        struct list *external[ZEBRA_ROUTE_MAX + 1];
 #define EXTERNAL_INFO(E) (E->external_info)
 
-       /* Gracefull restart Helper supported configs*/
+       /* Graceful restart Helper supported configs*/
        /* Supported grace interval*/
        uint32_t supported_grace_time;
 
index af0c8b6bed1531c2820932d5590c9520898dd8b4..5e2fa62af0664f265cc6d00087c27f8adae68caf 100644 (file)
@@ -20,7 +20,7 @@
 #
 
 """
-Following tests are covered to test BGP Gracefull Restart functionality.
+Following tests are covered to test BGP Graceful Restart functionality.
 Basic Common Test steps for all the test case below :
 - Create topology (setup module)
   Creating 2 routers topology, r1, r2 in IBGP
index d802b27acc77ded87c28be61d1a7528f9e6e0466..63656a3ce2acec07bacae8e1e45e3ac0f02c4e98 100644 (file)
@@ -20,7 +20,7 @@
 #
 
 """
-Following tests are covered to test BGP Gracefull Restart functionality.
+Following tests are covered to test BGP Graceful Restart functionality.
 Basic Common Test steps for all the test case below :
 - Create topology (setup module)
   Creating 2 routers topology, r1, r2 in IBGP
index b0ca959e53766a78d11d043ffccd00f2d2d98050..40244c5778bebc757ffe46a046dd9efa95d39d19 100644 (file)
@@ -20,7 +20,7 @@
 #
 
 """
-Following tests are covered to test BGP Gracefull Restart functionality.
+Following tests are covered to test BGP Graceful Restart functionality.
 Basic Common Test steps for all the test case below :
 - Create topology (setup module)
   Creating 2 routers topology, r1, r2 in IBGP
index 399d13d73788bb391e112a869b79bd53dc90dafc..02850b53a2845d82a255e0a01444692a52f8115b 100644 (file)
@@ -20,7 +20,7 @@
 #
 
 """
-Following tests are covered to test BGP Gracefull Restart functionality.
+Following tests are covered to test BGP Graceful Restart functionality.
 Basic Common Test steps for all the test case below :
 - Create topology (setup module)
   Creating 2 routers topology, r1, r2 in IBGP
index 630c76c98933ca5ccda0cd488fc09edfeacccd31..403f6c0d99da58004fad633726def67570b8f124 100644 (file)
@@ -172,7 +172,7 @@ void zserv_log_message(const char *errmsg, struct stream *msg,
 }
 
 /*
- * Gracefully shut down a client connection.
+ * Gracefuly shut down a client connection.
  *
  * Cancel any pending tasks for the client's thread. Then schedule a task on
  * the main thread to shut down the calling thread.
@@ -568,7 +568,7 @@ DEFINE_KOOH(zserv_client_close, (struct zserv *client), (client));
  * Deinitialize zebra client.
  *
  * - Deregister and deinitialize related internal resources
- * - Gracefully close socket
+ * - Gracefuly close socket
  * - Free associated resources
  * - Free client structure
  *