Michael McConville wrote:
> Now that we have 64-bit time. Otherwise, all the people running Alpha in
> 2038 will yell at us.

And sh:


Index: arch/sh/sh/clock.c
===================================================================
RCS file: /cvs/src/sys/arch/sh/sh/clock.c,v
retrieving revision 1.7
diff -u -p -r1.7 clock.c
--- arch/sh/sh/clock.c  8 Sep 2012 22:01:25 -0000       1.7
+++ arch/sh/sh/clock.c  17 Feb 2016 18:32:44 -0000
@@ -309,7 +309,7 @@ inittodr(time_t base)
 
        if (!(sh_clock.flags & SH_CLOCK_NOINITTODR) &&
            (rtc < base ||
-               dt.dt_year < MINYEAR || dt.dt_year > 2037 ||
+               dt.dt_year < MINYEAR ||
                dt.dt_mon < 1 || dt.dt_mon > 12 ||
                dt.dt_wday > 6 ||
                dt.dt_day < 1 || dt.dt_day > 31 ||

Reply via email to