aboutsummaryrefslogtreecommitdiff
path: root/miscutils/crond.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-03-17 19:47:52 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2019-03-17 19:48:39 +0100
commit5059653882dbd86e3bbf48389f9f81b0fac8cd0a (patch)
treec485a272add5b3a684f9ac97aad69a7c07aadb85 /miscutils/crond.c
parent2bbd1e1e8ababc480ff5d373847ab98ba0cc23dd (diff)
downloadbusybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.tar.gz
busybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.tar.bz2
busybox-w32-5059653882dbd86e3bbf48389f9f81b0fac8cd0a.zip
do not duplicate CONFIG_PID_FILE_PATH and ".pid" strings
text data bss dec hex filename 981737 485 7296 989518 f194e busybox_old 981704 485 7296 989485 f192d busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/crond.c')
-rw-r--r--miscutils/crond.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 2e36c406b..25e5503c7 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -1056,7 +1056,7 @@ int crond_main(int argc UNUSED_PARAM, char **argv)
1056 1056
1057 log8("crond (busybox "BB_VER") started, log level %d", G.log_level); 1057 log8("crond (busybox "BB_VER") started, log level %d", G.log_level);
1058 rescan_crontab_dir(); 1058 rescan_crontab_dir();
1059 write_pidfile(CONFIG_PID_FILE_PATH "/crond.pid"); 1059 write_pidfile_std_path_and_ext("crond");
1060#if ENABLE_FEATURE_CROND_SPECIAL_TIMES 1060#if ENABLE_FEATURE_CROND_SPECIAL_TIMES
1061 if (touch_reboot_file()) 1061 if (touch_reboot_file())
1062 start_jobs(START_ME_REBOOT); /* start @reboot entries, if any */ 1062 start_jobs(START_ME_REBOOT); /* start @reboot entries, if any */