aboutsummaryrefslogtreecommitdiff
path: root/lib/parsedate.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-10-04 18:15:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-10-04 18:15:33 +0000
commitdb83a0ebbc37dece413b3c8c89cfd2856cd932f6 (patch)
tree524eb7338d1b75a0695b91448cb1c32400b22bda /lib/parsedate.c
parent6d9fddb95dbc0a4286e78370738c724732243110 (diff)
Michael Wallner reported that the date parser had wrong offset stored for
the MEST and CEST time zones.
Diffstat (limited to 'lib/parsedate.c')
-rw-r--r--lib/parsedate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parsedate.c b/lib/parsedate.c
index caf38a2ca..52684825f 100644
--- a/lib/parsedate.c
+++ b/lib/parsedate.c
@@ -130,8 +130,8 @@ static const struct tzinfo tz[]= {
{"CET", -60}, /* Central European */
{"MET", -60}, /* Middle European */
{"MEWT", -60}, /* Middle European Winter */
- {"MEST", -120 tDAYZONE}, /* Middle European Summer */
- {"CEST", -120 tDAYZONE}, /* Central European Summer */
+ {"MEST", -60 tDAYZONE}, /* Middle European Summer */
+ {"CEST", -60 tDAYZONE}, /* Central European Summer */
{"MESZ", -60 tDAYZONE}, /* Middle European Summer */
{"FWT", -60}, /* French Winter */
{"FST", -60 tDAYZONE}, /* French Summer */