diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-01 20:53:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-01 20:53:16 +0000 |
commit | 38e68573bc08179bb9418038e7c2db7e576eaea5 (patch) | |
tree | fac3119a1783cc465b6ff578da410897c4163c00 /time | |
parent | 4a7d6545ce1611c0a320f3210d46d5bd3a03b260 (diff) | |
download | glibc-38e68573bc08179bb9418038e7c2db7e576eaea5.tar.gz glibc-38e68573bc08179bb9418038e7c2db7e576eaea5.tar.xz glibc-38e68573bc08179bb9418038e7c2db7e576eaea5.zip |
Update.
2003-02-01 Ulrich Drepper <drepper@redhat.com> * time/tzfile.c (__tzfile_compute): Change return value type to void. Adjust return statements. * include/time.h (__tzfile_compute): Adjust prototype. 2003-02-01 Jim Meyering <jim@meyering.net> * time/tzset.c (__tz_convert): Remove dead code; __tzfile_compute always returns 1. 2003-01-31 Steven Munroe <sjmunroe@us.ibm.com> * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c [!__ASSUME_NEW_PRCTL_SYSCALL]: Noop prctl syscall and set ENOSYS. 2003-01-31 Steven Munroe <sjmunroe@us.ibm.com> * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Generate ENOSYS stub. * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Likewise. 2003-01-31 Steven Munroe <sjmunroe@us.ibm.com> * sysdeps/unix/sysv/linux/configure.in: Change arch_minimum_kernel back to 2.4.19 for powerpc64. * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_NEW_PRCTL_SYSCALL): Define for powerpc64. (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Define for powerpc64. 2003-02-01 Ulrich Drepper <drepper@redhat.com> * wcsmbs/wcscpy.c (wcscpy): Add alternative implementation for platforms with strange alignment requirements on wchar_t.
Diffstat (limited to 'time')
-rw-r--r-- | time/tzfile.c | 8 | ||||
-rw-r--r-- | time/tzset.c | 9 |
2 files changed, 6 insertions, 11 deletions
diff --git a/time/tzfile.c b/time/tzfile.c index 24ef18f941..39b3c2f211 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1993, 1995-2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1991-1993, 1995-2001, 2003 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 @@ -463,7 +463,7 @@ find_transition (time_t timer) return &types[i]; } -int +void __tzfile_compute (time_t timer, int use_localtime, long int *leap_correct, int *leap_hit, struct tm *tp) @@ -513,7 +513,7 @@ __tzfile_compute (time_t timer, int use_localtime, i = num_leaps; do if (i-- == 0) - return 1; + return; while (timer < leaps[i].transition); /* Apply its correction. */ @@ -532,8 +532,6 @@ __tzfile_compute (time_t timer, int use_localtime, --i; } } - - return 1; } static void diff --git a/time/tzset.c b/time/tzset.c index 02940589f7..6de96762e9 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1999, 2000, 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1991-2002, 2003 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 @@ -567,11 +567,8 @@ __tz_convert (const time_t *timer, int use_localtime, struct tm *tp) tzset_internal (tp == &_tmbuf); if (__use_tzfile) - { - if (! __tzfile_compute (*timer, use_localtime, - &leap_correction, &leap_extra_secs, tp)) - tp = NULL; - } + __tzfile_compute (*timer, use_localtime, &leap_correction, + &leap_extra_secs, tp); else { if (! __offtime (timer, 0, tp)) |