Follow-up to eb454d7
: use time(NULL) instead of weird calculus
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
parent
d18e485e0a
commit
c7e30c6bd0
@ -1046,7 +1046,7 @@ parsemsg_rfc3164(const char *from, int pri, char *msg)
|
|||||||
* This loop can only run for at most three
|
* This loop can only run for at most three
|
||||||
* iterations before terminating.
|
* iterations before terminating.
|
||||||
*/
|
*/
|
||||||
t_now = boot_time + timer_now();
|
t_now = time(NULL);
|
||||||
localtime_r(&t_now, &tm_now);
|
localtime_r(&t_now, &tm_now);
|
||||||
for (year = tm_now.tm_year + 1;; --year) {
|
for (year = tm_now.tm_year + 1;; --year) {
|
||||||
assert(year >= tm_now.tm_year - 1);
|
assert(year >= tm_now.tm_year - 1);
|
||||||
@ -1874,7 +1874,7 @@ void wallmsg(struct filed *f, struct iovec *iov, int iovcnt)
|
|||||||
* and doing notty().
|
* and doing notty().
|
||||||
*/
|
*/
|
||||||
if (fork() == 0) {
|
if (fork() == 0) {
|
||||||
time_t t_now = boot_time + timer_now();
|
time_t t_now = time(NULL);
|
||||||
|
|
||||||
(void)signal(SIGTERM, SIG_DFL);
|
(void)signal(SIGTERM, SIG_DFL);
|
||||||
(void)alarm(0);
|
(void)alarm(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user