summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-01-20 16:27:58 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-01-22 10:03:16 -0500
commit28137202027b07fec5c270c1b1ef12ebaf35d58d (patch)
treed4fd0c36868ae56d6aacf2528865df341cb8f765
parent46d785ca843362be76749b5b109248a504a6fb1f (diff)
Fix some typos
-rw-r--r--man/systemd.service.xml2
-rw-r--r--src/core/manager.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/systemd.service.xml b/man/systemd.service.xml
index f7cbbb489c..891b3474aa 100644
--- a/man/systemd.service.xml
+++ b/man/systemd.service.xml
@@ -745,7 +745,7 @@
open access to the notification socket
when using
<varname>Type=notify</varname> or
- <varname>WatchdogUsec=</varname> (see
+ <varname>WatchdogSec=</varname> (see
above). If those options are used but
<varname>NotifyAccess=</varname> not
configured it will be implicitly set
diff --git a/src/core/manager.c b/src/core/manager.c
index aaf66970cf..9c829fdb3b 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -123,7 +123,7 @@ static int manager_setup_notify(Manager *m) {
ev.data.ptr = &m->notify_watch;
if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->notify_watch.fd, &ev) < 0) {
- log_error("Failed to add timer change fd to epoll: %m");
+ log_error("Failed to add notification socket fd to epoll: %m");
return -errno;
}