BUG: Histlog.c - Incorrect starting date if the log file is not valid
The code:
{ //if no valid log we set the date to 1 Jan 1990 0:00
time_lastlog_tm.tm_year = 1990;
should read:
{ //if no valid log we set the date to 1 Jan 1990 0:00
time_lastlog_tm.tm_year = 90;