]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: fix typo in log message
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 2 Jul 2018 21:13:43 +0000 (23:13 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 3 Jul 2018 00:09:41 +0000 (09:09 +0900)
Follow-up for cc7d50a5714bc810af51b0c55be12b4f55acc089.

src/resolve/resolved-resolv-conf.c

index b37abe4e7a3d6adeacecedfb335e63b2ded1b0b8..1e19586b92fcb760fe76e6ae7594bbd41af85b87 100644 (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;
                 }
         }