diff options
author | 2000-03-12 19:08:19 +0000 | |
---|---|---|
committer | 2000-03-12 19:08:19 +0000 | |
commit | 3adef08ff61725848550b979e6caa63c301377ae (patch) | |
tree | 1a0ca611056828b74a012d820014cb7f1cb892d0 | |
parent | improve SECURITY section. sync with kame. (diff) | |
download | wireguard-openbsd-3adef08ff61725848550b979e6caa63c301377ae.tar.xz wireguard-openbsd-3adef08ff61725848550b979e6caa63c301377ae.zip |
Update clock code to work until 2001-12-31. -moj
-rw-r--r-- | sys/arch/pmax/pmax/clock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/pmax/pmax/clock.c b/sys/arch/pmax/pmax/clock.c index 0031c8fa729..80712baf8d4 100644 --- a/sys/arch/pmax/pmax/clock.c +++ b/sys/arch/pmax/pmax/clock.c @@ -1,3 +1,4 @@ +/* $OpenBSD: clock.c,v 1.8 2000/03/12 19:08:19 maja Exp $ */ /* $NetBSD: clock.c,v 1.15 1996/10/13 03:39:45 christos Exp $ */ /* @@ -326,7 +327,7 @@ setstatclockrate(newhz) * and if it's outside that range, sets it to 1972-01-01. */ #if 1 /* testing, until we write time-of-year code as aboce */ -#define YR_OFFSET 26 /* good til dec 31, 1999 */ +#define YR_OFFSET 28 /* good til dec 31, 2001 */ #define DAY_OFFSET /*1*/ 0 #else #define YR_OFFSET 22 |