resolved: fix typo in log message

Follow-up for cc7d50a571.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2018-07-02 23:13:43 +02:00 committed by Yu Watanabe
parent 2479c4fe3f
commit 052a85d188
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("DNSStubListner= is disabled, but /etc/resolv.conf is a symlink to %s "
"which expects DNSStubListner= to be enabled.", path);
log_warning("DNSStubListener= is disabled, but /etc/resolv.conf is a symlink to %s "
"which expects DNSStubListener= to be enabled.", path);
return -EOPNOTSUPP;
}
}