aboutsummaryrefslogtreecommitdiff
path: root/sysklogd/klogd.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-28 05:12:20 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-28 05:12:20 +0000
commit72f9a4277fe5ad7c6c6b9a9810d469cc7fcc3c71 (patch)
tree5dbf1995f603a95960c0ef94558954091ce7beef /sysklogd/klogd.c
parent9af363fe20002c7390966d4b71fcdee27b3686ba (diff)
downloadbusybox-w32-72f9a4277fe5ad7c6c6b9a9810d469cc7fcc3c71.tar.gz
busybox-w32-72f9a4277fe5ad7c6c6b9a9810d469cc7fcc3c71.tar.bz2
busybox-w32-72f9a4277fe5ad7c6c6b9a9810d469cc7fcc3c71.zip
Add in some (theoretical) uClinux support. Some init cleanups
Diffstat (limited to 'sysklogd/klogd.c')
-rw-r--r--sysklogd/klogd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sysklogd/klogd.c b/sysklogd/klogd.c
index 33bc783fe..52a815d56 100644
--- a/sysklogd/klogd.c
+++ b/sysklogd/klogd.c
@@ -136,8 +136,12 @@ extern int klogd_main(int argc, char **argv)
136 } 136 }
137 137
138 if (doFork == TRUE) { 138 if (doFork == TRUE) {
139#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
139 if (daemon(0, 1) < 0) 140 if (daemon(0, 1) < 0)
140 perror_msg_and_die("daemon"); 141 perror_msg_and_die("daemon");
142#else
143 error_msg_and_die("daemon not supported");
144#endif
141 } 145 }
142 doKlogd(); 146 doKlogd();
143 147