aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-23 23:55:28 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-23 23:55:28 +0100
commit10b32e9cf61201a35184536caf3702f0fc358b91 (patch)
tree3b8b07328d1affcad16f0dff86e0484e519046af /src
parentm (diff)
downloadslibc-10b32e9cf61201a35184536caf3702f0fc358b91.tar.gz
slibc-10b32e9cf61201a35184536caf3702f0fc358b91.tar.bz2
slibc-10b32e9cf61201a35184536caf3702f0fc358b91.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--src/unistd/daemonise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/daemonise.c b/src/unistd/daemonise.c
index 3d4ab72..a8fe3ab 100644
--- a/src/unistd/daemonise.c
+++ b/src/unistd/daemonise.c
@@ -152,7 +152,7 @@ int daemonise(const char* name, int flags)
return errno = EINVAL, -1;
- /* Close all files except stdin, stdou, and stderr. */
+ /* Close all files except stdin, stdout, and stderr. */
if ((flags & DAEMONISE_NO_CLOSE) == 0)
{
if (getrlimit(RLIMIT_NOFILE, &rlimit))