patches/glibc/2.1.3/rh62-04-glibc-2.1.3-tzfile.patch
changeset 1 eeea35fbf182
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/patches/glibc/2.1.3/rh62-04-glibc-2.1.3-tzfile.patch	Sat Feb 24 11:00:05 2007 +0000
     1.3 @@ -0,0 +1,22 @@
     1.4 +2000-08-09  Jakub Jelinek  <jakub@redhat.com>
     1.5 +
     1.6 +	* time/tzfile.c (__tzfile_compute): __tzstring zones
     1.7 +	from zone_names.
     1.8 +
     1.9 +--- glibc-2.1.3/time/tzfile.c.jj	Fri May  7 16:41:44 1999
    1.10 ++++ glibc-2.1.3/time/tzfile.c	Fri Aug 25 09:55:20 2000
    1.11 +@@ -1,4 +1,4 @@
    1.12 +-/* Copyright (C) 1991,92,93,95,96,97,98,99 Free Software Foundation, Inc.
    1.13 ++/* Copyright (C) 1991,92,93,95,96,97,98,99,2000 Free Software Foundation, Inc.
    1.14 +    This file is part of the GNU C Library.
    1.15 + 
    1.16 +    The GNU C Library is free software; you can redistribute it and/or
    1.17 +@@ -498,7 +498,7 @@ __tzfile_compute (time_t timer, int use_
    1.18 + 	/* There is no daylight saving time.  */
    1.19 + 	__tzname[1] = __tzname[0];
    1.20 +       tp->tm_isdst = info->isdst;
    1.21 +-      tp->tm_zone = &zone_names[info->idx];
    1.22 ++      tp->tm_zone = __tzstring (&zone_names[info->idx]);
    1.23 +       tp->tm_gmtoff = info->offset;
    1.24 +     }
    1.25 +