diff options
author | Denis Vlasenko | 2008-03-20 14:04:30 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-20 14:04:30 +0000 |
commit | c52248e41ce50bd3fa684d19b2bce4320267dc44 (patch) | |
tree | 6c53a42b343804fc1a6ccbc6a3f00fa2e878f14f /miscutils | |
parent | 3c96d0258c4f3321a8fef850587f55ff56032860 (diff) | |
download | busybox-c52248e41ce50bd3fa684d19b2bce4320267dc44.zip busybox-c52248e41ce50bd3fa684d19b2bce4320267dc44.tar.gz |
small NOMMU fixes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/crond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c index fcfc120..ba9cf35 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c @@ -175,7 +175,7 @@ int crond_main(int argc ATTRIBUTE_UNUSED, char **argv) if (!(opt & OPT_f)) { /* close stdin, stdout, stderr. * close unused descriptors - don't need them. */ - bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, av); + bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, argv); } if (!DebugOpt && LogFile == NULL) { |