From: Yu Watanabe Date: Mon, 3 Oct 2022 00:23:37 +0000 (+0900) Subject: resolve: fix typo X-Git-Tag: v252-rc1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64ebc0da03c6f7673cd55fbec62f486a077d3afb;p=thirdparty%2Fsystemd.git resolve: fix typo --- diff --git a/man/resolvectl.xml b/man/resolvectl.xml index a9cdfe91872..2cb855c360f 100644 --- a/man/resolvectl.xml +++ b/man/resolvectl.xml @@ -202,7 +202,7 @@ monitor - Show a continous stream of local client resolution queries and their + 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 diff --git a/src/resolve/resolvectl.c b/src/resolve/resolvectl.c index b2a5b7263f0..9341fb0435a 100644 --- a/src/resolve/resolvectl.c +++ b/src/resolve/resolvectl.c @@ -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; } diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c index ce5935dc7af..fc8d5b06630 100644 --- a/src/resolve/resolved-manager.c +++ b/src/resolve/resolved-manager.c @@ -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");