summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-05-14 23:18:55 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-05-14 23:18:55 +0000
commit7a72d8171dfa72f742eaa892e879c4eeb4f54334 (patch)
tree48c8d7e11f0b430c83b9b8034babdb8f05a92f25 /include/time.h
parent27182716f9b28613bd8bb9f773a9fe19cdb7590c (diff)
use UTC when abbreviating Coordinated Universal Time, not CUT
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/time.h b/include/time.h
index 72e3385fb0a..47562bc8ade 100644
--- a/include/time.h
+++ b/include/time.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: time.h,v 1.5 1999/03/10 02:43:10 pjanzen Exp $ */
+/* $OpenBSD: time.h,v 1.6 1999/05/14 23:18:54 aaron Exp $ */
/* $NetBSD: time.h,v 1.9 1994/10/26 00:56:35 cgd Exp $ */
/*
@@ -78,7 +78,7 @@ struct tm {
int tm_wday; /* days since Sunday [0-6] */
int tm_yday; /* days since January 1 [0-365] */
int tm_isdst; /* Daylight Saving Time flag */
- long tm_gmtoff; /* offset from CUT in seconds */
+ long tm_gmtoff; /* offset from UTC in seconds */
char *tm_zone; /* timezone abbreviation */
};