Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 16:21:59 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 16:21:59 +0400
commit27af5a0dd34b1b392aa69b548e18935aafe66e5f (patch)
tree0de777f153dec72a0339c12d360e8bf156d17b45 /libbb
parent87d80dcc3e81d80caa11ed88fe6136ffe3e605dc (diff)
replacing func() with xfunc() where appropriate
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c2
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