1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

2000-06-14

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-06-14 05:50:32 +00:00
parent abc49e493d
commit 8c4f656b6c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Jun 14 14:50:00 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* time.c (make_time_t): opposite timezone shift (should be negative).
Wed Jun 14 14:07:38 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* io.c: typo(ig/if).

2
time.c
View file

@ -314,7 +314,7 @@ make_time_t(tptr, utc_or_local)
if (!utc_or_local) { /* localtime zone adjust */
#if defined(HAVE_TM_ZONE)
tm = localtime(&guess);
guess += tm->tm_gmtoff;
guess -= tm->tm_gmtoff;
#else
struct tm gt, lt;
long tzsec;