diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index b2b53a712..116cff459 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -454,7 +454,7 @@ DIR *xopendir(const char *path) /* Die with an error message if we can't daemonize. */ void xdaemon(int nochdir, int noclose) { - if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon"); + if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon"); } #endif #endif |