summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2024-11-18 04:53:18 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2024-11-18 04:53:21 +0100
commitefb158a11bda5e6764a617d9c169bee113b2e8c3 (patch)
tree414ac9cd9d5be842f6656f8ec22bd13a8a06d251 /src/network
parentnspawn: Include arm_fadvise64_64 in syscall allow_list (diff)
downloadsystemd-efb158a11bda5e6764a617d9c169bee113b2e8c3.tar.xz
systemd-efb158a11bda5e6764a617d9c169bee113b2e8c3.zip
network/netdev: fix typo
Follow-up for 09db4106064dd600c64d12a4e06bd88143b2e4f7.
Diffstat (limited to 'src/network')
-rw-r--r--src/network/netdev/netdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/netdev/netdev.c b/src/network/netdev/netdev.c
index d3c2a8e442..c2986aafb5 100644
--- a/src/network/netdev/netdev.c
+++ b/src/network/netdev/netdev.c
@@ -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)