summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-02-28 20:59:16 +0900
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-02-28 16:52:33 +0100
commit8956caf333ff64aebe56d0e01696e92964dd1a31 (patch)
treee09bb1600a53bc4bc28948dad849c7efe506d43a
parente6e81ec0a56861b905db975fc32c83e2f2faca7d (diff)
downloadsystemd-8956caf333ff64aebe56d0e01696e92964dd1a31.tar.gz
network: fix typo in comment
-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 c86cba8f8b..3dca043d99 100644
--- a/src/network/networkd-link.c
+++ b/src/network/networkd-link.c
@@ -1652,7 +1652,7 @@ static int link_configure_addrgen_mode(Link *link) {
if (!link_ipv6ll_enabled(link))
ipv6ll_mode = IN6_ADDR_GEN_MODE_NONE;
else if (sysctl_read_ip_property(AF_INET6, link->ifname, "stable_secret", NULL) < 0)
- /* The file may not exist. And event if it exists, when stable_secret is unset,
+ /* The file may not exist. And even if it exists, when stable_secret is unset,
* reading the file fails with EIO. */
ipv6ll_mode = IN6_ADDR_GEN_MODE_EUI64;
else