tilibs icon indicating copy to clipboard operation
tilibs copied to clipboard

Issue with daylight savings time clock setting

Open uyjulian opened this issue 7 years ago • 1 comments

It seems that the clock setting function on all calc-*.c files are bugged, as they set ref.tm_isdst = 1; even through it is not Daylight Savings Time. That means that the hour is set one hour behind.

uyjulian avatar Nov 06 '17 02:11 uyjulian

I'll try replacing these cur.tm_isdst = 1; by cur.tm_isdst = ref.tm_isdst;.

EDIT: that's not enough.

debrouxl avatar Mar 27 '18 05:03 debrouxl