(sys_gmtime): Don't assume year < 2000.
This commit is contained in:
parent
29a0dc6ce1
commit
019226d02d
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ struct tm *sys_gmtime(time_t *clock)
|
|||
gmt.tm_hour = tmp_vectime.hour;
|
||||
gmt.tm_mday = tmp_vectime.day;
|
||||
gmt.tm_mon = tmp_vectime.month - 1;
|
||||
gmt.tm_year = tmp_vectime.year % 100;
|
||||
gmt.tm_year = tmp_vectime.year - 1900;
|
||||
|
||||
tmp_operation = LIB$K_DAY_OF_WEEK;
|
||||
status = LIB$CVT_FROM_INTERNAL_TIME(&tmp_operation,
|
||||
|
|
Loading…
Add table
Reference in a new issue