diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-06 13:05:08 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-06 13:05:08 +0100 |
commit | 06667f21d6d28bf3acbc12474cf52c9bc20c884b (patch) | |
tree | 28b9d471b66dafe3cff1745a9d76c083300ef785 | |
parent | ede737b7cfb2d86965ebde07004ede3d8c3f1ab8 (diff) | |
download | busybox-06667f21d6d28bf3acbc12474cf52c9bc20c884b.tar.gz |
ntpd: renew cur_time after script run, it can take a while
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ntpd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index 81474547e..d23b2c984 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c @@ -1902,6 +1902,7 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv) ) { /* Useful for updating battery-backed RTC and such */ run_script("periodic"); + gettime1900d(); /* sets G.cur_time */ } continue; } |