diff options
Diffstat (limited to '')
-rw-r--r-- | man/daemon.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/daemon.xml b/man/daemon.xml index 8fa2506..819ff9b 100644 --- a/man/daemon.xml +++ b/man/daemon.xml @@ -75,7 +75,7 @@ create an independent session.</para></listitem> <listitem><para>In the child, call <function>fork()</function> again, to ensure that the daemon can - never re-acquire a terminal again. (This relevant if the program — and all its dependencies — does + never re-acquire a terminal again. (This is relevant if the program — and all its dependencies — does not carefully specify `O_NOCTTY` on each and every single `open()` call that might potentially open a TTY device node.)</para></listitem> @@ -228,7 +228,7 @@ <listitem><para>If the service opens sockets or other files on it own, and those file descriptors shall survive a restart, the daemon should store them in the service manager via <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry> with - <varname>FDSTORE=1</varname>..</para></listitem> + <varname>FDSTORE=1</varname>.</para></listitem> <listitem><para>Instead of using the <function>syslog()</function> call to log directly to the system syslog service, a new-style daemon may choose to simply log to standard error via |