aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:21:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:21:59 +0000
commit27af5a0dd34b1b392aa69b548e18935aafe66e5f (patch)
tree0de777f153dec72a0339c12d360e8bf156d17b45 /libbb
parent87d80dcc3e81d80caa11ed88fe6136ffe3e605dc (diff)
downloadbusybox-w32-27af5a0dd34b1b392aa69b548e18935aafe66e5f.tar.gz
busybox-w32-27af5a0dd34b1b392aa69b548e18935aafe66e5f.tar.bz2
busybox-w32-27af5a0dd34b1b392aa69b548e18935aafe66e5f.zip
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)
454/* Die with an error message if we can't daemonize. */ 454/* Die with an error message if we can't daemonize. */
455void xdaemon(int nochdir, int noclose) 455void xdaemon(int nochdir, int noclose)
456{ 456{
457 if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon"); 457 if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
458} 458}
459#endif 459#endif
460#endif 460#endif