summaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-10-04 04:51:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-10-04 04:51:08 +0000
commit52d12453a9941ff91fbcaf1b02914efcb5a7621b (patch)
treea6ad21b14e176e9c3a39a775781b978950315543 /missing
parent960c03333927ea7bc50a29b263e33331edff5460 (diff)
downloadruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.tar.gz
ruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.tar.xz
ruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.zip
19991004
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/strftime.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/missing/strftime.c b/missing/strftime.c
index cc3f1a807..6bce49024 100644
--- a/missing/strftime.c
+++ b/missing/strftime.c
@@ -425,6 +425,7 @@ strftime(char *s, size_t maxsize, const char *format, const struct tm *timeptr)
*/
off = -(daylight ? timezone : altzone) / 60;
#else /* !HAVE_TZNAME */
+ gettimeofday(&tv, &zone);
off = -zone.tz_minuteswest;
#endif /* !HAVE_TZNAME */
#endif /* !HAVE_TM_ZONE */