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

* time.c (rb_time_timespec_new): swap utc and localtime

to generate gmt flag by INT_MAX - gmtoff.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-11-10 05:36:47 +00:00
parent d68c3ecf98
commit 911b1c6b06
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 10 14:34:09 2015 NARUSE, Yui <naruse@ruby-lang.org>
* time.c (rb_time_timespec_new): swap utc and localtime
to generate gmt flag by INT_MAX - gmtoff.
Tue Nov 10 14:01:59 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* hash.c (rb_hash_{le,lt,ge,gt}): new methods, Hash#<=, Hash#<,

8
time.c
View file

@ -2315,7 +2315,7 @@ rb_time_nano_new(time_t sec, long nsec)
/**
* Returns a time object with UTC/localtime/fixed offset
*
* offset is -86400 < fixoff < 86400 or INT_MAX (UTC) or INT_MAX-1 (localtime)
* offset is -86400 < fixoff < 86400 or INT_MAX (localtime) or INT_MAX-1 (utc)
*/
VALUE
rb_time_timespec_new(const struct timespec *ts, int offset)
@ -2327,12 +2327,12 @@ rb_time_timespec_new(const struct timespec *ts, int offset)
GetTimeval(time, tobj);
TIME_SET_FIXOFF(tobj, INT2FIX(offset));
}
else if (offset == INT_MAX) { /* UTC */
else if (offset == INT_MAX) { /* localtime */
}
else if (offset == INT_MAX-1) { /* UTC */
GetTimeval(time, tobj);
TIME_SET_UTC(tobj);
}
else if (offset == INT_MAX-1) { /* localtime */
}
else {
rb_raise(rb_eArgError, "utc_offset out of range");
}