aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-03 12:21:59 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-03 12:21:59 +0000
commit0afe3781a71e7e2d110d33ae3141e9c7ac205333 (patch)
tree0de777f153dec72a0339c12d360e8bf156d17b45 /libbb
parent4c0b2b92c05fbf5ecc84946a8a4ddb78bb687f80 (diff)
downloadbusybox-w32-0afe3781a71e7e2d110d33ae3141e9c7ac205333.tar.gz
busybox-w32-0afe3781a71e7e2d110d33ae3141e9c7ac205333.tar.bz2
busybox-w32-0afe3781a71e7e2d110d33ae3141e9c7ac205333.zip
replacing func() with xfunc() where appropriate
git-svn-id: svn://busybox.net/trunk/busybox@16034 69ca8d6d-28ef-0310-b511-8ec308f3f277
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