degesch: fix the date change timer

It used absolute time, while we need relative.
This commit is contained in:
Přemysl Eric Janouch 2015-07-12 00:08:56 +02:00
parent 0ce4872254
commit 5b96f2ccb7
1 changed files with 4 additions and 3 deletions

View File

@ -9035,9 +9035,10 @@ static void
rearm_date_change_timer (struct app_context *ctx)
{
const time_t seconds_per_day = 60 * 60 * 12;
poller_timer_set (&ctx->date_chg_tmr,
(time (NULL) + seconds_per_day - 1)
/ seconds_per_day * seconds_per_day * 1000);
const time_t now = time (NULL);
const time_t midnight = (now + seconds_per_day - 1)
/ seconds_per_day * seconds_per_day;
poller_timer_set (&ctx->date_chg_tmr, (midnight - now) * 1000);
}
static void