diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-27 07:53:18 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-27 07:53:18 +0000 |
| commit | d0a297acb760c28aba45208f89c802668677c592 (patch) | |
| tree | 481b675e97fe10eafbf54e0bde3e9fe8f040128c | |
| parent | b8d7bc8bb7339ce5a3ab1fcb7f92c7a35bbc4f6c (diff) | |
| download | ruby-d0a297acb760c28aba45208f89c802668677c592.tar.gz ruby-d0a297acb760c28aba45208f89c802668677c592.tar.xz ruby-d0a297acb760c28aba45208f89c802668677c592.zip | |
* time.c (time_to_s): use +0900 style timezone string for local time.
[ruby-dev:29143]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | time.c | 17 |
2 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Jul 27 16:49:01 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * time.c (time_to_s): use +0900 style timezone string for local time. + [ruby-dev:29143] + Thu Jul 27 16:41:15 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * ext/openssl/ossl.h: move <ruby.h> inclusion point to shut up @@ -1261,7 +1261,22 @@ time_to_s(time) len = strftime(buf, 128, "%a %b %d %H:%M:%S UTC %Y", &tobj->tm); } else { - len = strftime(buf, 128, "%a %b %d %H:%M:%S %Z %Y", &tobj->tm); + time_t off; + char buf2[32]; + char sign = '+'; +#if defined(HAVE_STRUCT_TM_TM_GMTOFF) + off = tobj->tm.tm_gmtoff; +#else + VALUE tmp = time_utc_offset(time); + off = NUM2INT(tmp); +#endif + if (off < 0) { + sign = '-'; + off = -off; + } + sprintf(buf2, "%%a %%b %%d %%H:%%M:%%S %c%02d%02d %%Y", + sign, off/3600, off%3600/60); + len = strftime(buf, 128, buf2, &tobj->tm); } return rb_str_new(buf, len); } |
