diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-08-06 12:56:31 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-08-06 12:56:31 +0200 |
commit | b0dd38e9570cdf9125786639e9568ad4b5e8befa (patch) | |
tree | bf2b740c00945f99d3ba83e44828ac97269c140a | |
parent | 254ac8189613fed613d54391d64a3af25ad3ef82 (diff) |
gettzoffset: simplify, default is 0 so remove UTC zones to check
-rw-r--r-- | sfeed.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -360,17 +360,13 @@ gettzoffset(const char *s) { STRP("CST"), -6 * 3600 }, { STRP("EDT"), -4 * 3600 }, { STRP("EST"), -5 * 3600 }, - { STRP("GMT"), 0 }, { STRP("MDT"), -6 * 3600 }, { STRP("MST"), -7 * 3600 }, { STRP("PDT"), -7 * 3600 }, { STRP("PST"), -8 * 3600 }, - { STRP("UT"), 0 }, - { STRP("UTC"), 0 }, { STRP("M"), -2 * 3600 }, { STRP("N"), 1 * 3600 }, { STRP("Y"), 12 * 3600 }, - { STRP("Z"), 0 }, }; const char *p; int tzhour = 0, tzmin = 0; |