diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 12:21:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 12:21:59 +0000 |
commit | 27af5a0dd34b1b392aa69b548e18935aafe66e5f (patch) | |
tree | 0de777f153dec72a0339c12d360e8bf156d17b45 /libbb | |
parent | 87d80dcc3e81d80caa11ed88fe6136ffe3e605dc (diff) | |
download | busybox-27af5a0dd34b1b392aa69b548e18935aafe66e5f.tar.gz |
replacing func() with xfunc() where appropriate
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 |