* libc/time/mktm_r.c (_mktm_r): Fix previous fix.

This commit is contained in:
Corinna Vinschen 2011-08-26 07:23:42 +00:00
parent 2691168e98
commit 477215fe7d
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2011-08-26 Steven Abner <pheonix@zoomtown.com>
* libc/time/mktm_r.c (_mktm_r): Fix previous fix.
2011-08-24 Corinna Vinschen <vinschen@redhat.com>
* libc/time/mktm_r.c (_mktm_r): Fix computing tm_year.

View File

@ -182,7 +182,7 @@ _DEFUN (_mktm_r, (tim_p, res, is_gmtime),
{
res->tm_mon = 11;
res->tm_year -= 1;
res->tm_yday = 364 + isleap(res->tm_year);
res->tm_yday = 364 + isleap(res->tm_year + 1900);
}
res->tm_mday = ip[res->tm_mon];
}
@ -254,4 +254,3 @@ _DEFUN (__tzcalc_limits, (year),
return 1;
}