diff options
author | Lennart Poettering <lennart@poettering.net> | 2020-11-05 15:49:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2020-11-06 14:42:45 +0100 |
commit | 02c205359b7dfcb4501cab564218f21d0a0523f8 (patch) | |
tree | 33914bcf19fc3de59f848c89d4dd9be08f5e4529 | |
parent | errno: ETIMEDOUT is also a connection error (diff) | |
download | systemd-02c205359b7dfcb4501cab564218f21d0a0523f8.tar.xz systemd-02c205359b7dfcb4501cab564218f21d0a0523f8.zip |
resolved: suppress misleading debug message about ignored resolv.conf line
-rw-r--r-- | src/resolve/resolved-resolv-conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c index ba8f18f82d..a26fe8393a 100644 --- a/src/resolve/resolved-resolv-conf.c +++ b/src/resolve/resolved-resolv-conf.c @@ -156,6 +156,8 @@ int manager_read_resolv_conf(Manager *m) { r = manager_parse_search_domains_and_warn(m, a); if (r < 0) log_warning_errno(r, "Failed to parse search domain string '%s', ignoring.", a); + + continue; } log_syntax(NULL, LOG_DEBUG, "/etc/resolv.conf", n, 0, "Ignoring resolv.conf line: %s", l); |