]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 9 Jun 2022 23:26:08 +0000 (08:26 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 9 Jun 2022 23:26:08 +0000 (08:26 +0900)
docs/BOOT_LOADER_SPECIFICATION.md
docs/CODING_STYLE.md
src/shared/firewall-util-nft.c

index 8a6a16c63f80e9c761894eda33edce4348cff7f3..6e8a3316a7ff6d1ec52445510edb1613a7851ba8 100644 (file)
@@ -402,7 +402,7 @@ boots is exhausted, the entry is marked as "bad".
 
 Which boots are "successful" is determined by the operating system. systemd
 provides a generic mechanism that can be extended with arbitrary checks and
-actions, see [Automatic Boot Assesment](AUTOMATIC_BOOT_ASSESSMENT.md), but the
+actions, see [Automatic Boot Assessment](AUTOMATIC_BOOT_ASSESSMENT.md), but the
 boot counting mechanism described in this specifaction can also be used with
 other implementations.
 
index 3599db57fb38a00b2351505a596f001c3f8db935..b7e700237ad98b5f4297f4e8287c9ec05b0cef50 100644 (file)
@@ -648,7 +648,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later
 - Use `typesafe_inet_ntop()`, `typesafe_inet_ntop4()`, and
   `typesafe_inet_ntop6()` instead of `inet_ntop()`. But better yet, use the
   `IN_ADDR_TO_STRING()`, `IN4_ADDR_TO_STRING()`, and `IN6_ADDR_TO_STRING()`
-  macros which allocate an anynomous buffer internally.
+  macros which allocate an anonymous buffer internally.
 
 - Please never use `dup()`. Use `fcntl(fd, F_DUPFD_CLOEXEC, 3)` instead. For
   two reasons: first, you want `O_CLOEXEC` set on the new `fd` (see
index 2604dbd15ecd49f1dd008408d68b0a426258dae4..331aaf3f0b48f057e6217d250826f6d00989528d 100644 (file)
@@ -928,7 +928,7 @@ static int nft_set_element_op_in_addr_open(
         r = nft_set_element_op_in_addr(nfnl, table, set,
                                        add, nfproto, af, address, prefixlen);
 
-        log_debug("%s NFT family %s table %s set %s IP addresss %s",
+        log_debug("%s NFT family %s table %s set %s IP address %s",
                   add ? "Added" : "Deleted",
                   nfproto_to_string(nfproto), table, set,
                   IN_ADDR_PREFIX_TO_STRING(af, address, prefixlen));