summaryrefslogtreecommitdiff
path: root/strftime.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-02-16 19:28:28 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-02-16 20:34:23 +0900
commit5b7439bb7b1088ef5233175893229970cee339fd (patch)
tree6f2847cde90d0970dd5f73e7f1d3edc1c6dcc5af /strftime.c
parent9ef66ce3fcfee06d628b611dbc22026d7cc72d0e (diff)
UTC zone should be still "+00:00" [Feature #17544]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4075
Diffstat (limited to 'strftime.c')
-rw-r--r--strftime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strftime.c b/strftime.c
index 88cdb2198c..c3d600114f 100644
--- a/strftime.c
+++ b/strftime.c
@@ -547,7 +547,7 @@ rb_strftime_with_timespec(VALUE ftime, const char *format, size_t format_len,
else {
off = NUM2LONG(rb_funcall(vtm->utc_offset, rb_intern("round"), 0));
}
- if (off < 0 || (off == 0 && (flags & BIT_OF(LEFT)))) {
+ if (off < 0 || (gmt && (flags & BIT_OF(LEFT)))) {
off = -off;
sign = -1;
}