]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network/netdev: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Nov 2024 03:53:18 +0000 (12:53 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Nov 2024 03:53:21 +0000 (12:53 +0900)
Follow-up for 09db4106064dd600c64d12a4e06bd88143b2e4f7.

src/network/netdev/netdev.c

index d3c2a8e4424cdeea7640cf5d3f7d2f32f1fac32b..c2986aafb5aa0eb2082f2b38baae0bd6ca288218 100644 (file)
@@ -642,7 +642,7 @@ static bool netdev_can_set_mac(NetDev *netdev, const struct hw_addr_data *hw_add
         if (hw_addr_equal(&link->hw_addr, hw_addr))
                 return false; /* Unchanged, not necessary to set. */
 
-        /* Soem netdevs refuse to update MAC address even if the interface is not running, e.g. ipvlan.
+        /* Some netdevs refuse to update MAC address even if the interface is not running, e.g. ipvlan.
          * Some other netdevs have the IFF_LIVE_ADDR_CHANGE flag and can update update MAC address even if
          * the interface is running, e.g. dummy. For those cases, use custom checkers. */
         if (NETDEV_VTABLE(netdev)->can_set_mac)