summaryrefslogtreecommitdiff
path: root/time/getdate.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/getdate.c')
-rw-r--r--time/getdate.c4
1 files changed, 2 insertions, 2 deletions
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;
}