summaryrefslogtreecommitdiff
path: root/lib/libc/stdtime
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2004-06-11 03:34:02 +0000
committerKen Smith <kensmith@FreeBSD.org>2004-06-11 03:34:02 +0000
commitf64520dfb8bcc1966fabf9dc8d9c0702beb6b640 (patch)
tree8d9fdc753f6cc7e09bd29a3017209f53b869b265 /lib/libc/stdtime
parent3ba181deb2871bb455315df03f5afd979fb07ce5 (diff)
Notes
Diffstat (limited to 'lib/libc/stdtime')
-rw-r--r--lib/libc/stdtime/localtime.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c
index e5d9b37c10e0..fadb3eca9f42 100644
--- a/lib/libc/stdtime/localtime.c
+++ b/lib/libc/stdtime/localtime.c
@@ -70,7 +70,12 @@ __FBSDID("$FreeBSD$");
static char wildabbr[] = "WILDABBR";
-static const char gmt[] = "GMT";
+/*
+ * In June 2004 it was decided UTC was a more appropriate default time
+ * zone than GMT.
+ */
+
+static const char gmt[] = "UTC";
struct ttinfo { /* time type information */
long tt_gmtoff; /* GMT offset in seconds */