summaryrefslogtreecommitdiff
path: root/libc/misc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-10-08 18:27:19 +0000
committerEric Andersen <andersen@codepoet.org>2003-10-08 18:27:19 +0000
commit1bdf3c0a8f4ad63e78559a6963ed62a8c2fc516c (patch)
tree9b6f5a46f73d819ea4984be7cf796b941254758f /libc/misc
parentc7757f181f0bd52206059f2685a5197113aca76f (diff)
Apply a trivial patch that doesn't change anything, but which is alledged to
workaround a toolchain specifi bug for the e1.
Diffstat (limited to 'libc/misc')
-rw-r--r--libc/misc/time/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c
index 9bc8bc4cf..e2dadc211 100644
--- a/libc/misc/time/time.c
+++ b/libc/misc/time/time.c
@@ -1698,13 +1698,13 @@ void tzset(void)
#ifdef __UCLIBC_HAS_TZ_CACHING__
*oldval = 0; /* Set oldval to an empty string. */
#endif /* __UCLIBC_HAS_TZ_CACHING__ */
+ _time_tzinfo[0].gmt_offset = 0L;
s = _time_tzinfo[0].tzname;
*s = 'U';
*++s = 'T';
*++s = 'C';
*++s =
*_time_tzinfo[1].tzname = 0;
- _time_tzinfo[0].gmt_offset = 0;
goto DONE;
}