]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 27 Feb 2025 04:25:10 +0000 (13:25 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 27 Feb 2025 04:37:20 +0000 (13:37 +0900)
Follow-up for 6698795edaf68f99354cf73d04307e1e2f4598c0.

src/network/networkd-manager.c

index c2625d548b20103093fc218fee2f18fc11ca073d..128af9d0bf5061e61519ae3ea0912c207e56e21e 100644 (file)
@@ -277,7 +277,7 @@ static int manager_connect_genl(Manager *m) {
         if (r < 0)
                 return r;
 
-        /* If the kernel is built without CONFIG_WIRELESS, the belows will fail with -EOPNOTSUPP. */
+        /* If the kernel is built without CONFIG_WIRELESS, the below will fail with -EOPNOTSUPP. */
         r = genl_add_match(m->genl, NULL, NL80211_GENL_NAME, NL80211_MULTICAST_GROUP_CONFIG, 0,
                            &manager_genl_process_nl80211_config, NULL, m, "network-genl_process_nl80211_config");
         if (r < 0 && r != -EOPNOTSUPP)
@@ -1087,7 +1087,7 @@ int manager_enumerate(Manager *m) {
         else if (r < 0)
                 return log_error_errno(r, "Could not enumerate routing policy rules: %m");
 
-        /* If the kernel is built without CONFIG_WIRELESS, the belows will fail with -EOPNOTSUPP. */
+        /* If the kernel is built without CONFIG_WIRELESS, the below will fail with -EOPNOTSUPP. */
         r = manager_enumerate_nl80211_wiphy(m);
         if (r == -EOPNOTSUPP)
                 log_debug_errno(r, "Could not enumerate wireless LAN phy, ignoring: %m");