From: Ulrich Drepper Date: Wed, 10 Sep 1997 21:08:12 +0000 (+0000) Subject: . X-Git-Tag: cvs/glibc-2_0_6-pre2~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26aed5edafc297ba451860c61d88658ffd74286f;p=thirdparty%2Fglibc.git . --- diff --git a/ChangeLog b/ChangeLog index 90b3affb9a2..c113c7aab7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,55 @@ +1997-09-09 Paul Eggert + + * time/mktime.c (__mktime_internal): Declare sec_requested even if + !LEAP_SECONDS_POSSIBLE, since it's needed at the end when checking + for time_t overflow. + +1997-09-10 04:42 Ulrich Drepper + + * sysdeps/unix/sysv/linux/netinet/ip_fw.h (struct ip_fw): Correct + type of fw_pcnt and fw_bcnt fields to match kernel. + Patch by a sun . + +1997-09-09 22:11 Ulrich Drepper + + * sysdeps/posix/getcwd.c: Correct test for too small buffer. + Reported by Erik Troan . + +1997-09-06 Paul Eggert + + Fix gmtime so that it reports leap seconds when TZ + indicates that leap seconds are desired. + + * time/gmtime.c (): Remove unnecessary include. + (gmtime): Put after gmtime_r, to help the compiler inline. + (__tz_convert): New decl. + (gmtime_r): Use __tz_convert instead of __offtime, + so that leap seconds are handled correctly. + + * time/localtime.c (, ): Remove includes that + are now unnecessary. + (__tzset_internal, __tz_compute, __tzfile_compute, __use_tzfile, + __tzset_lock): Remove extern decls that are now unnecessary. + (localtime_internal): Moved to __tz_convert in tzset.c. + so that localtime and gmtime can both use it easily. + (localtime): Put after localtime_r, to help the compiler inline. + (localtime_r): Use __tz_convert instead of localtime_internal. + + * time/strftime.c (__tz_compute): Remove unused (and now incorrect) + decl. + + * time/tzfile.c (__tzfile_compute): New arg USE_LOCALTIME. + + * time/tzset.c (): Include. + (_tmbuf): New decl. + (__tzfile_compute): New function. + (tz_compute): Renamed from __tz_compute. No longer extern. + Remove redundant call to tzset_internal. + (tzset_internal): Renamed from __tzset_internal. No longer extern. + (tzset_lock): Renamed from __tzset_lock. No longer extern. + (__tz_convert): New function, containing functionality of old + localtime_internal function, plus locking and optional UTC. + 1997-09-06 Paul Eggert * tzfile.c (__tzfile_read): Don't read a file if TZ is the empty