]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 19 Feb 2021 04:27:56 +0000 (13:27 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 19 Feb 2021 06:56:22 +0000 (07:56 +0100)
NEWS
man/resolvectl.xml
src/resolve/resolved-dns-scope.c
src/resolve/resolved-dns-server.c
src/resolve/resolved-dns-stub.c
src/shared/parse-argument.c
src/systemctl/fuzz-systemctl-parse-argv.c

diff --git a/NEWS b/NEWS
index 8cafd6e6bdde46fb01aa6ae51d03823c2e15cdbc..d13ffe47d8a7ea13948e63a2b9367792242daa60 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -153,8 +153,8 @@ CHANGES WITH 248:
           ManageTemporaryAddress= switch.
 
           .network files gained a new ActivationPolicy= setting which allows
-          configuraiton how the UP state of an interface shall be managed,
-          i.e. whether the iterface is always upped, always downed, or may be
+          configuration how the UP state of an interface shall be managed,
+          i.e. whether the interface is always upped, always downed, or may be
           upped/downed by the user using "ip dev".
 
         * systemd.netdev files gained a [VLAN] Protocol=, IngressQOSMaps=,
@@ -261,7 +261,7 @@ CHANGES WITH 248:
           specific variables, and not the full inherited environment.
 
         * systemctl's status output now shows unit state with a more careful
-          selection of Unicode characters: units in maintainance show a "○"
+          selection of Unicode characters: units in maintenance show a "○"
           symbol instead of the usual "●", failed units show "×", and services
           being reloaded "↻".
 
@@ -277,7 +277,7 @@ CHANGES WITH 248:
           many terminal colours are used in output.
 
         * less 568 or newer is now required. Hyperlink ANSI sequences in
-          termina output are now used even if a pager is used, and older
+          terminal output are now used even if a pager is used, and older
           versions of less are not able to display these sequences
           correctly. SYSTEMD_URLIFY=0 may be used to disable it.
 
index c87b6fd44b340c8e69d97feb881b440ce388b886..a2f26ec5ab86c4428647800363362413afa9aae8 100644 (file)
@@ -55,7 +55,7 @@
       <varlistentry>
         <term><command>query</command> <replaceable>HOSTNAME|ADDRESS</replaceable>…</term>
 
-        <listitem><para>Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjuntion
+        <listitem><para>Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjunction
         with <option>--type=</option> or <option>--class=</option> (see below), resolves low-level DNS
         resource records.</para>
 
index 2bbb85c1bd88cd12c0e6e3fb35680e874ce89619..2d24b5d101875c547584ca547676f03c2c7d05a1 100644 (file)
@@ -679,7 +679,7 @@ DnsScopeMatch dns_scope_good_domain(
                     dns_name_endswith(domain, "local") > 0)
                         return DNS_SCOPE_NO;
 
-                /* If the IP address to look up matches the local subnet, then implicity synthesizes
+                /* If the IP address to look up matches the local subnet, then implicitly synthesizes
                  * DNS_SCOPE_YES_BASE + 0 on this interface, i.e. preferably resolve IP addresses via the DNS
                  * server belonging to this interface. */
                 m = match_subnet_reverse_lookups(s, domain, false);
index e027cdf7650c6a7879dc43c8998322eb68543b4e..82481563546365e6ae7f8d182d3285607081025b 100644 (file)
@@ -639,8 +639,8 @@ int dns_server_adjust_opt(DnsServer *server, DnsPacket *packet, DnsServerFeature
                         if (server->packet_fragmented)
                                 packet_size = MIN(server->received_udp_fragment_max, packet_size);
 
-                        /* Let's not pick ridiculously large sizes, i.e. not more than 4K. Noone appears to
-                         * ever use such large sized on the Internet IRL, hence let's not either. */
+                        /* Let's not pick ridiculously large sizes, i.e. not more than 4K. No one appears
+                         * to ever use such large sized on the Internet IRL, hence let's not either. */
                         packet_size = MIN(packet_size, 4096U);
                 }
 
index a18998f1c868f44666c61d354369600f6666a2d9..a40eeea6553bbf153ab69cacbde9acc0d5a2b2eb 100644 (file)
@@ -415,7 +415,7 @@ static const char *nsid_string(void) {
                         SD_ID128_MAKE(ed,d3,12,5d,16,b9,41,f9,a1,49,5f,ab,15,62,ab,27),
                         &id);
         if (r < 0) {
-                log_debug_errno(r, "Failed to determine machine ID, igoring: %m");
+                log_debug_errno(r, "Failed to determine machine ID, ignoring: %m");
                 return NULL;
         }
 
index db182e4bcb2a6e905a0dd48fee04241c25b3c824..68c55a54c9e8965fb35a5d948e550f3f47f8538c 100644 (file)
@@ -8,7 +8,7 @@
 #include "string-table.h"
 #include "string-util.h"
 
-/* All functions in this file emit warnigs. */
+/* All functions in this file emit warnings. */
 
 int parse_boolean_argument(const char *optname, const char *s, bool *ret) {
         int r;
index 31269863c1e290bb56f41533c96cded8325fd06e..66b48eee857d33f6b656f91cb0e1c52470db46af 100644 (file)
@@ -63,7 +63,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         mac_selinux_finish();
 
         /* Call static destructors to do global state cleanup. We do it here, and not in fuzz-main.c so that
-         * any global state is destoyed between fuzzer runs. */
+         * any global state is destroyed between fuzzer runs. */
         static_destruct();
 
         return 0;