+Fri Feb 3 08:24:18 1995 Theodore Y. Ts'o (tytso@dcl)
+
+ * gmt_mktime.c (gmt_mktime): Don't double count the leap day in a
+ leap year.
+
Sun Jan 22 18:23:37 1995 John Gilmore (gnu@cygnus.com)
* get_krbhst.c (krb5_get_krbhst): Declare realm argument const,
accum *= 365; /* 365 days/normal year */
/* add in leap day for all previous years */
- accum += (t->tm_year - 68) / 4;
+ accum += (t->tm_year - 69) / 4;
/* add in leap day for this year */
if(t->tm_mon >= 2) /* march or later */
if(hasleapday(t->tm_year)) accum += 1;