aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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))