From f64520dfb8bcc1966fabf9dc8d9c0702beb6b640 Mon Sep 17 00:00:00 2001 From: Ken Smith Date: Fri, 11 Jun 2004 03:34:02 +0000 Subject: [PATCH] Change defualt time zone from GMT to UTC. This will not be MFC-ed, and was done before 5-STABLE on purpose... --- lib/libc/stdtime/localtime.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c index e5d9b37c10e..fadb3eca9f4 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 */