From f9c68c633487a2005f5386ecc3822f0aefd45b89 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 24 Mar 2006 06:27:34 +0000 Subject: [PATCH] The year field is the 4 digit year (eg, 2006), not 'year - 1900' (eg 106). Fix the comment to reflect this. --- sys/sys/clock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/clock.h b/sys/sys/clock.h index 1c71d0e37d0b..1b61b1948c0e 100644 --- a/sys/sys/clock.h +++ b/sys/sys/clock.h @@ -47,7 +47,7 @@ * to a struct timespec. */ struct clocktime { - int year; /* year - 1900 */ + int year; /* year (4 digit year) */ int mon; /* month (1 - 12) */ int day; /* day (1 - 31) */ int hour; /* hour (0 - 23) */