William

Results 2 comments of William

I have fixed the issue in my fork by subtracting the timezone in seconds from the returned time_t in line 175 of GPSFix.cpp. return mktime(&t) - timezone;

I have fixed this in my local copy by changing line 170 in src/GPSFix.cpp from `t.tm_mon = month;` to `t.tm_mon = month - 1;`.