X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2c5c74d8aff556e5cd7bc10c9d555a0b2a026ed7..4d57f81eef643ecd34082dc872557b6b4b6ec241:/sbr/dtime.c diff --git a/sbr/dtime.c b/sbr/dtime.c index 58cb94eb..b4aaed8d 100644 --- a/sbr/dtime.c +++ b/sbr/dtime.c @@ -298,10 +298,8 @@ dtimezone (int offset, int flags) hours = offset / 60; } -#ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST if (flags & TW_DST) hours++; -#endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */ snprintf (buffer, sizeof(buffer), "%s%02d%02d", offset < 0 ? "-" : "+", abs (hours), abs (mins)); return buffer;