diff options
author | Andreas Jaeger <aj@suse.de> | 2000-03-03 08:13:22 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-03-03 08:13:22 +0000 |
commit | 06b5432233f5f298adfdc9522ae88bfa10995118 (patch) | |
tree | 81d1f9c083828c311195e87a1751c51664d356a8 | |
parent | 901a5bd7f40dd8431490f80c1e50d6709245ce75 (diff) | |
download | glibc-06b5432233f5f298adfdc9522ae88bfa10995118.tar glibc-06b5432233f5f298adfdc9522ae88bfa10995118.tar.gz glibc-06b5432233f5f298adfdc9522ae88bfa10995118.tar.bz2 glibc-06b5432233f5f298adfdc9522ae88bfa10995118.zip |
Update.
2000-03-01 Andreas Jaeger <aj@suse.de>
* time/getdate.c (check_mday): Fix check for february.
Reported by ane@np.bs1.fc.nec.co.jp and Akira YOSHIYAMA
<yosshy@cts.ne.jp>, closes PR libc/1617 and PR libc/1619.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | time/getdate.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2000-03-01 Andreas Jaeger <aj@suse.de> + + * time/getdate.c (check_mday): Fix check for february. + Reported by ane@np.bs1.fc.nec.co.jp and Akira YOSHIYAMA + <yosshy@cts.ne.jp>, closes PR libc/1617 and PR libc/1619. + 2000-03-02 Andreas Jaeger <aj@suse.de> * posix/unistd.h: __THROW has to precede __attribute__, otherwise diff --git a/time/getdate.c b/time/getdate.c index 01bd2db0ea..626fb49d7a 100644 --- a/time/getdate.c +++ b/time/getdate.c @@ -1,5 +1,5 @@ /* Convert a string representation of time to a time value. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997. @@ -91,7 +91,7 @@ check_mday (int year, int mon, int mday) return 1; break; case 1: - if (mday >= 1 && mday < (__isleap (year) ? 29 : 28)) + if (mday >= 1 && mday <= (__isleap (year) ? 29 : 28)) return 1; break; } |