From 970aa10f95b3e289e5814e6c83d483a05e56c21c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 5 Feb 2009 20:09:58 +0000 Subject: * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour value of 24. --- time/tzset.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'time/tzset.c') diff --git a/time/tzset.c b/time/tzset.c index a6fed4abc1..45d70518a8 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2002,2003,2004,2007 Free Software Foundation, Inc. +/* Copyright (C) 1991-2002,2003,2004,2007,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -244,7 +244,7 @@ __tzset_parse_tz (tz) ss = 0; case 3: tz_rules[1].offset *= (min (ss, 59) + (min (mm, 59) * 60) + - (min (hh, 23) * (60 * 60))); + (min (hh, 24) * (60 * 60))); break; } for (l = 0; l < 3; ++l) -- cgit v1.2.3