summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-25 06:40:59 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-25 06:40:59 +0000
commit4c2e9430917f86266f42cee05b34bd176a501276 (patch)
treee283f329cea7f7dddac616cd7288ad358cd77b2a /time.c
parentafbb1ba21bcc8c9a64d3960f5aff7647e2b5e1dd (diff)
* time.c (time_succ): refactored to avoid gmt variable.
(strftimev): use TIME_UTC_P. (time_strftime): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/time.c b/time.c
index c32a3cbf51..e8cf565cf1 100644
--- a/time.c
+++ b/time.c
@@ -2445,13 +2445,12 @@ static VALUE
time_succ(VALUE time)
{
struct time_object *tobj;
- int gmt;
+ struct time_object *tobj2;
GetTimeval(time, tobj);
- gmt = tobj->gmt;
time = time_new_timev(rb_cTime, add(tobj->timev, INT2FIX(1)));
- GetTimeval(time, tobj);
- tobj->gmt = gmt;
+ GetTimeval(time, tobj2);
+ tobj2->gmt = tobj->gmt;
return time;
}
@@ -2930,7 +2929,7 @@ strftimev(const char *fmt, VALUE time)
GetTimeval(time, tobj);
MAKE_TM(time, tobj);
- len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, tobj->gmt);
+ len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj));
str = rb_str_new(buf, len);
if (buf != buffer) xfree(buf);
return str;
@@ -3013,7 +3012,7 @@ time_strftime(VALUE time, VALUE format)
str = rb_str_new(0, 0);
while (p < pe) {
- len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, tobj->gmt);
+ len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj));
rb_str_cat(str, buf, len);
p += strlen(p);
if (buf != buffer) {
@@ -3027,7 +3026,7 @@ time_strftime(VALUE time, VALUE format)
}
else {
len = rb_strftime_alloc(&buf, RSTRING_PTR(format),
- &tobj->vtm, tobj->timev, tobj->gmt);
+ &tobj->vtm, tobj->timev, TIME_UTC_P(tobj));
}
str = rb_str_new(buf, len);
if (buf != buffer) xfree(buf);