summaryrefslogtreecommitdiff
path: root/networking/ntpd.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 /networking/ntpd.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 'networking/ntpd.c')
-rw-r--r--networking/ntpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c
index 0f474bc09..b2e77929e 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -2641,7 +2641,7 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv)
2641 */ 2641 */
2642 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1); 2642 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1);
2643 2643
2644 write_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid"); 2644 write_pidfile_std_path_and_ext("ntpd");
2645 2645
2646 while (!bb_got_signal) { 2646 while (!bb_got_signal) {
2647 llist_t *item; 2647 llist_t *item;
@@ -2814,7 +2814,7 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv)
2814 } 2814 }
2815 } /* while (!bb_got_signal) */ 2815 } /* while (!bb_got_signal) */
2816 2816
2817 remove_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid"); 2817 remove_pidfile_std_path_and_ext("ntpd");
2818 kill_myself_with_sig(bb_got_signal); 2818 kill_myself_with_sig(bb_got_signal);
2819} 2819}
2820 2820