diff options
Diffstat (limited to 'miscutils/crond.c')
-rw-r--r-- | miscutils/crond.c | 6 |
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) | |||
205 | */ | 205 | */ |
206 | 206 | ||
207 | if (!(opt & 4)) { | 207 | if (!(opt & 4)) { |
208 | #if defined(__uClinux__) | 208 | #ifdef BB_NOMMU |
209 | /* reexec for vfork() do continue parent */ | 209 | /* reexec for vfork() do continue parent */ |
210 | vfork_daemon_rexec(1, 0, ac, av, "-f"); | 210 | vfork_daemon_rexec(1, 0, ac, av, "-f"); |
211 | #else /* uClinux */ | 211 | #else |
212 | bb_xdaemon(1, 0); | 212 | bb_xdaemon(1, 0); |
213 | #endif /* uClinux */ | 213 | #endif |
214 | } | 214 | } |
215 | 215 | ||
216 | (void) startlogger(); /* need if syslog mode selected */ | 216 | (void) startlogger(); /* need if syslog mode selected */ |