aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-31 10:19:51 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-31 10:19:51 +0000
commitc418d482baf414ef3f08a95ab99da7091f358b89 (patch)
tree4bcf7032041b501464f38ff9715f98453bebcbaf /miscutils
parent507cd755a44628ced60acfa568b402cdf2f5547b (diff)
downloadbusybox-c418d482baf414ef3f08a95ab99da7091f358b89.tar.gz
- s/defined(__uClinux__)/BB_NOMMU/
This needs a second pass to: + add bb_daemon(unsigned char no_chdir, unsigned char no_close, const char*flag) + eventually globally export argc and argv, so we don't need to pass it to bb_daemon().
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/crond.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 030e962f3..954d97965 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -205,12 +205,12 @@ int crond_main(int ac, char **av)
*/
if (!(opt & 4)) {
-#if defined(__uClinux__)
+#ifdef BB_NOMMU
/* reexec for vfork() do continue parent */
vfork_daemon_rexec(1, 0, ac, av, "-f");
-#else /* uClinux */
+#else
bb_xdaemon(1, 0);
-#endif /* uClinux */
+#endif
}
(void) startlogger(); /* need if syslog mode selected */