summaryrefslogtreecommitdiff
path: root/src/resolve/resolved-resolv-conf.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-06-28 23:57:22 +0900
committerLennart Poettering <lennart@poettering.net>2018-06-29 11:37:07 +0200
commitcc7d50a5714bc810af51b0c55be12b4f55acc089 (patch)
tree160261dfbf36d37e714a582546f266b037634309 /src/resolve/resolved-resolv-conf.c
parent0a2fcbd2eefe2257f622576e1f9f15608a3b6e19 (diff)
downloadsystemd-cc7d50a5714bc810af51b0c55be12b4f55acc089.tar.gz
resolve: update log message
Follow-up for f43580f17d9977ea330deacc8931982e41a49abf.
Diffstat (limited to 'src/resolve/resolved-resolv-conf.c')
-rw-r--r--src/resolve/resolved-resolv-conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c
index edad569acd..b37abe4e7a 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;
}
}