Bug fix: Interpretation of 17 digit timestamps was wrong.

This commit is contained in:
2016-09-13 20:10:17 +02:00
parent 63c074b0aa
commit 496b8051c5
2 changed files with 2 additions and 1 deletions

View File

@ -1823,7 +1823,7 @@ time_t iso_datetime_read_17(const uint8_t *buf)
tm.tm_mon -= 1;
tm.tm_isdst = 0;
return timegm(&tm) - ((int8_t)buf[6]) * 60 * 15;
return timegm(&tm) - ((int8_t)buf[16]) * 60 * 15;
}
/**