]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 20 Feb 2021 08:11:39 +0000 (17:11 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 20 Feb 2021 09:58:07 +0000 (18:58 +0900)
src/network/networkd-nexthop.c
src/network/networkd-route.c

index be41f1e9d688c6ea0e327100e0a02c1c365c1c52..07842ae6089c91f7692583c3883663050a3b4f5c 100644 (file)
@@ -409,7 +409,7 @@ int link_set_nexthops(Link *link) {
 
         if (link->nexthop_messages == 0) {
                 link->static_nexthops_configured = true;
-                /* Finaly, configure routes with gateways. */
+                /* Finally, configure routes with gateways. */
                 return link_set_routes_with_gateway(link);
         }
 
index 7d725d6a646d88fa2f837e4d461be33b592b2c53..ddfa4d4df7a84b51b7ce57e29211898659a3cda3 100644 (file)
@@ -1327,7 +1327,7 @@ int link_set_routes_with_gateway(Link *link) {
                  * the addresses now, let's not configure the routes either. */
                 return 0;
 
-        /* Finaly, add routes that needs a gateway. */
+        /* Finally, add routes that needs a gateway. */
         r = link_set_routes_internal(link, true);
         if (r < 0)
                 return r;