From: Yu Watanabe Date: Thu, 28 Jun 2018 14:57:22 +0000 (+0900) Subject: resolve: update log message X-Git-Tag: v240~1015 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc7d50a5714bc810af51b0c55be12b4f55acc089;p=platform%2Fupstream%2Fsystemd.git resolve: update log message Follow-up for f43580f17d9977ea330deacc8931982e41a49abf. --- diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c index edad569..b37abe4 100644 --- a/src/resolve/resolved-resolv-conf.c +++ b/src/resolve/resolved-resolv-conf.c @@ -55,8 +55,8 @@ int manager_check_resolv_conf(const Manager *m) { if (stat(path, &own) >= 0 && st.st_dev == own.st_dev && st.st_ino == own.st_ino) { - log_warning("In spite of DNSStubListner= is disabled, /etc/resolv.conf is a symlink to %s, " - "which expects DNSStubListner= is enabled.", path); + log_warning("DNSStubListner= is disabled, but /etc/resolv.conf is a symlink to %s " + "which expects DNSStubListner= to be enabled.", path); return -EOPNOTSUPP; } }