]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolve: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 3 Oct 2022 00:23:37 +0000 (09:23 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 3 Oct 2022 00:23:37 +0000 (09:23 +0900)
man/resolvectl.xml
src/resolve/resolvectl.c
src/resolve/resolved-manager.c

index a9cdfe91872ce6c3ad7bdfd6465f1e6505dd0e01..2cb855c360ffb3eb6ccdc3e5da95ff49d79bef45 100644 (file)
       <varlistentry>
         <term><command>monitor</command></term>
 
-        <listitem><para>Show a continous stream of local client resolution queries and their
+        <listitem><para>Show a continuous stream of local client resolution queries and their
         responses. Whenever a local query is completed the query's DNS resource lookup key and resource
         records are shown. Note that this displays queries issued locally only, and does not immediately
         relate to DNS requests submitted to configured DNS servers or the LLMNR or MulticastDNS zones, as
index b2a5b7263f0bfd92b4ebb85372811ecfce1b46f7..9341fb0435a1301398fa42e6dba90d8f21a868a8 100644 (file)
@@ -2587,7 +2587,7 @@ static int print_answer(JsonVariant *answer) {
 
                 r = dns_resource_record_new_from_raw(&rr, d, l);
                 if (r < 0) {
-                        log_warning_errno(r, "Failed to parse monitor answer RR, ingoring: %m");
+                        log_warning_errno(r, "Failed to parse monitor answer RR, ignoring: %m");
                         continue;
                 }
 
index ce5935dc7af51e8c049e9bc4a733a4723993de0c..fc8d5b06630ad3227e8a1b2f124e53673c2a532c 100644 (file)
@@ -1097,7 +1097,7 @@ int manager_monitor_send(
         if (r < 0)
                 return log_error_errno(r, "Failed to convert question to JSON: %m");
 
-        /* Generate a JSON array of the questions preceeding the current one in the CNAME chain */
+        /* Generate a JSON array of the questions preceding the current one in the CNAME chain */
         r = dns_question_to_json(collected_questions, &jcollected_questions);
         if (r < 0)
                 return log_error_errno(r, "Failed to convert question to JSON: %m");