diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-11-05 18:47:54 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-11-05 20:32:19 +0100 |
commit | 2257be13fec7d603796f437a6ad13c3cf7934b2b (patch) | |
tree | 7303d30685a3bbe77824c519269f054fcddef42e /src/resolve | |
parent | Add PrivatePIDs= (continued) (#34940) (diff) | |
download | systemd-2257be13fec7d603796f437a6ad13c3cf7934b2b.tar.xz systemd-2257be13fec7d603796f437a6ad13c3cf7934b2b.zip |
tree-wide: time-out → timeout
For justification, see 3f9a0a522f2029e9295ea5e9984259022be88413.
Diffstat (limited to 'src/resolve')
-rw-r--r-- | src/resolve/resolvectl.c | 2 | ||||
-rw-r--r-- | src/resolve/resolved-dns-scope.c | 2 | ||||
-rw-r--r-- | src/resolve/resolved-dns-stream.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/resolve/resolvectl.c b/src/resolve/resolvectl.c index 0dd2ca5fc7..b34ade1378 100644 --- a/src/resolve/resolvectl.c +++ b/src/resolve/resolvectl.c @@ -3010,7 +3010,7 @@ static int verb_monitor(int argc, char *argv[], void *userdata) { r = sd_varlink_set_relative_timeout(vl, USEC_INFINITY); /* We want the monitor to run basically forever */ if (r < 0) - return log_error_errno(r, "Failed to set varlink time-out: %m"); + return log_error_errno(r, "Failed to set varlink timeout: %m"); r = sd_varlink_attach_event(vl, event, SD_EVENT_PRIORITY_NORMAL); if (r < 0) diff --git a/src/resolve/resolved-dns-scope.c b/src/resolve/resolved-dns-scope.c index 734728f905..cd16d2475e 100644 --- a/src/resolve/resolved-dns-scope.c +++ b/src/resolve/resolved-dns-scope.c @@ -1744,7 +1744,7 @@ int dns_type_suitable_for_protocol(uint16_t type, DnsProtocol protocol) { /* Tests whether it makes sense to route queries for the specified DNS RR types to the specified * protocol. For classic DNS pretty much all RR types are suitable, but for LLMNR/mDNS let's * allowlist only a few that make sense. We use this when routing queries so that we can more quickly - * return errors for queries that will almost certainly fail/time-out otherwise. For example, this + * return errors for queries that will almost certainly fail/time out otherwise. For example, this * ensures that SOA, NS, or DS/DNSKEY queries are never routed to mDNS/LLMNR where they simply make * no sense. */ diff --git a/src/resolve/resolved-dns-stream.h b/src/resolve/resolved-dns-stream.h index 912b9bf431..d3de4ebf3d 100644 --- a/src/resolve/resolved-dns-stream.h +++ b/src/resolve/resolved-dns-stream.h @@ -15,7 +15,7 @@ typedef struct DnsStubListenerExtra DnsStubListenerExtra; #include "resolved-dns-packet.h" #include "resolved-dnstls.h" -/* Various timeouts for establishing TCP connections. First the default time-out for that. */ +/* Various timeouts for establishing TCP connections. First the default timeout for that. */ #define DNS_STREAM_DEFAULT_TIMEOUT_USEC (10 * USEC_PER_SEC) /* In the DNS stub, be more friendly for incoming connections, than we are to ourselves for outgoing ones */ |