From: Yu Watanabe Date: Wed, 7 Dec 2022 13:55:37 +0000 (+0900) Subject: resolve: adjust warning X-Git-Tag: v253-rc1~303^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10b0c81802541373c576b63e16500b87e0eacaaf;p=thirdparty%2Fsystemd.git resolve: adjust warning --- diff --git a/src/resolve/resolved-etc-hosts.c b/src/resolve/resolved-etc-hosts.c index 547c5fe17da..4e74610bff6 100644 --- a/src/resolve/resolved-etc-hosts.c +++ b/src/resolve/resolved-etc-hosts.c @@ -115,8 +115,6 @@ static int parse_line(EtcHosts *hosts, unsigned nr, const char *line) { if (r == 0) break; - found = true; - r = dns_name_is_valid_ldh(name); if (r <= 0) { if (r < 0) @@ -126,13 +124,15 @@ static int parse_line(EtcHosts *hosts, unsigned nr, const char *line) { continue; } + found = true; + if (!item) { /* Optimize the case where we don't need to store any addresses, by storing * only the name in a dedicated Set instead of the hashmap */ r = set_ensure_consume(&hosts->no_address, &dns_name_hash_ops, TAKE_PTR(name)); if (r < 0) - return r; + return log_oom(); continue; } @@ -167,7 +167,7 @@ static int parse_line(EtcHosts *hosts, unsigned nr, const char *line) { } if (!found) - log_warning("/etc/hosts:%u: line is missing any hostnames", nr); + log_warning("/etc/hosts:%u: line is missing any valid hostnames", nr); return 0; }