+Fri Jun 9 22:08:33 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * gmt_mktime.c (gmt_mktime): Change assertion to check to make
+ sure that the day of the month is >= 1, not 0.
+
Fri Jun 9 19:34:29 1995 <tytso@rsx-11.mit.edu>
* configure.in: Remove standardized set of autoconf macros, which
assert_time(t->tm_year<=138);
assert_time(t->tm_mon>=0);
assert_time(t->tm_mon<=11);
- assert_time(t->tm_mday>=0);
+ assert_time(t->tm_mday>=1);
assert_time(t->tm_mday<=31);
assert_time(t->tm_hour>=0);
assert_time(t->tm_hour<=23);