]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 26 Apr 2021 00:19:38 +0000 (09:19 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 26 Apr 2021 00:19:41 +0000 (09:19 +0900)
Follow-up for 4b409e855b18c263b0526c826fdca16215a4cf2e.

src/network/networkd-dhcp6.c

index f4b309636f0fa1b20190343ddab980b25b5e603b..b13a635a7821a82764bbb3f54355729cb00c33a5 100644 (file)
@@ -888,7 +888,7 @@ static int dhcp6_pd_prefix_add(Link *link, const union in_addr_union *prefix, ui
                       "DHCP6: received PD Prefix %s%s",
                       strna(buf),
                       prefixlen > 64 ? " with prefix length > 64, ignoring." :
-                      prefixlen < 48 ? " with prefix lenght < 48, looks unusual.": "");
+                      prefixlen < 48 ? " with prefix length < 48, looks unusual.": "");
 
         /* Store PD prefix even if prefixlen > 64, not to make logged at warning level so frequently. */
         r = set_ensure_put(&link->dhcp6_pd_prefixes, &in_addr_prefix_hash_ops_free, p);