resolve: fix typo

This commit is contained in:
Yu Watanabe 2022-10-03 09:23:37 +09:00
parent f0e6cb196e
commit 64ebc0da03
3 changed files with 3 additions and 3 deletions

View file

@ -202,7 +202,7 @@
<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

View 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;
}

View 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");