aboutsummaryrefslogtreecommitdiff
path: root/sysklogd/klogd.c
diff options
context:
space:
mode:
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