1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-06 13:17:44 +03:00

timesync: downgrade log message about unsupported address family

As this is mostly not user's fault.

(cherry picked from commit 7a12328735)
This commit is contained in:
Yu Watanabe 2022-12-14 23:50:08 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent b1cf593b11
commit 966afb965e

View File

@ -754,7 +754,7 @@ static int manager_resolve_handler(sd_resolve_query *q, int ret, const struct ad
assert(ai->ai_addrlen >= offsetof(struct sockaddr, sa_data));
if (!IN_SET(ai->ai_addr->sa_family, AF_INET, AF_INET6)) {
log_warning("Unsuitable address protocol for %s", m->current_server_name->string);
log_debug("Ignoring unsuitable address protocol for %s.", m->current_server_name->string);
continue;
}