From: Yu Watanabe Date: Thu, 27 Feb 2025 04:25:10 +0000 (+0900) Subject: network: fix typo X-Git-Tag: v258-rc1~1240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bfbf0fcdf107e70065a13a131c95ed5bb6171f0;p=thirdparty%2Fsystemd.git network: fix typo Follow-up for 6698795edaf68f99354cf73d04307e1e2f4598c0. --- diff --git a/src/network/networkd-manager.c b/src/network/networkd-manager.c index c2625d548b2..128af9d0bf5 100644 --- a/src/network/networkd-manager.c +++ b/src/network/networkd-manager.c @@ -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");