summaryrefslogtreecommitdiff
path: root/src/resolve/resolved-resolv-conf.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-07-02 23:13:43 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-07-03 09:09:41 +0900
commit052a85d18859faeb38b01c9bbec560afe226e2a4 (patch)
tree839ad26359427e39d496c0b3b6804abacaaf4694 /src/resolve/resolved-resolv-conf.c
parent2479c4fe3fc3d0b631b93debbc2a83aa40a5f379 (diff)
downloadsystemd-052a85d18859faeb38b01c9bbec560afe226e2a4.tar.gz
resolved: fix typo in log message
Follow-up for cc7d50a5714bc810af51b0c55be12b4f55acc089.
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 b37abe4e7a..1e19586b92 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("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;
}
}