diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-23 23:55:28 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-23 23:55:28 +0100 |
commit | 10b32e9cf61201a35184536caf3702f0fc358b91 (patch) | |
tree | 3b8b07328d1affcad16f0dff86e0484e519046af /src/unistd | |
parent | m (diff) | |
download | slibc-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 'src/unistd')
-rw-r--r-- | src/unistd/daemonise.c | 2 |
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)) |