diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-06-14 05:50:32 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-06-14 05:50:32 +0000 |
| commit | e710c2c02503799eab339a8ecb20727e9093cd7b (patch) | |
| tree | 11e33175cd4f48ec8a806ad6822ef4a7474d147f | |
| parent | fb8018fbdd3a503c3b0ba3a6af628c3b9807b179 (diff) | |
| download | ruby-e710c2c02503799eab339a8ecb20727e9093cd7b.tar.gz ruby-e710c2c02503799eab339a8ecb20727e9093cd7b.tar.xz ruby-e710c2c02503799eab339a8ecb20727e9093cd7b.zip | |
2000-06-14
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | time.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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). @@ -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; |
