resolve: update log message

Follow-up for f43580f17d.
This commit is contained in:
Yu Watanabe 2018-06-28 23:57:22 +09:00 committed by Lennart Poettering
parent 0a2fcbd2ee
commit cc7d50a571
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}