summaryrefslogtreecommitdiffstats
path: root/src/network/networkd-link.c
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2022-11-01 18:31:08 +0100
committerGitHub <noreply@github.com>2022-11-01 18:31:08 +0100
commit2f2376245189755bee579d6fca2f42b9292381ea (patch)
tree1e565b73f7409bd5923bcc42d2e100adbc6ae452 /src/network/networkd-link.c
parentnamespace: Add hidepid/subset support check (diff)
parenttest-network: explicitly prepare default.link (diff)
downloadsystemd-2f2376245189755bee579d6fca2f42b9292381ea.tar.xz
systemd-2f2376245189755bee579d6fca2f42b9292381ea.zip
Merge pull request #25192 from yuwata/wait-online-altname
wait-online: support alternative interface names
Diffstat (limited to 'src/network/networkd-link.c')
-rw-r--r--src/network/networkd-link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
index b3dccb7b09..95b08cb885 100644
--- a/src/network/networkd-link.c
+++ b/src/network/networkd-link.c
@@ -2238,7 +2238,7 @@ static int link_update_alternative_names(Link *link, sd_netlink_message *message
r = sd_netlink_message_read_strv(message, IFLA_PROP_LIST, IFLA_ALT_IFNAME, &altnames);
if (r == -ENODATA)
- /* The message does not have IFLA_PROP_LIST container attribute. It does not means the
+ /* The message does not have IFLA_PROP_LIST container attribute. It does not mean the
* interface has no alternative name. */
return 0;
if (r < 0)