summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-10-03 09:23:37 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-10-03 09:23:37 +0900
commit64ebc0da03c6f7673cd55fbec62f486a077d3afb (patch)
tree9b98015c7b7c6f7e9550fa0616308af1832be1ad
parentf0e6cb196edaeddfe1ee8d84dfb346021e2ca3c5 (diff)
downloadsystemd-64ebc0da03c6f7673cd55fbec62f486a077d3afb.tar.gz
resolve: fix typo
-rw-r--r--man/resolvectl.xml2
-rw-r--r--src/resolve/resolvectl.c2
-rw-r--r--src/resolve/resolved-manager.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/man/resolvectl.xml b/man/resolvectl.xml
index a9cdfe9187..2cb855c360 100644
--- a/man/resolvectl.xml
+++ b/man/resolvectl.xml
@@ -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
diff --git a/src/resolve/resolvectl.c b/src/resolve/resolvectl.c
index b2a5b7263f..9341fb0435 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 ce5935dc7a..fc8d5b0663 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");