summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8c6d34)
raw | patch | inline | side by side (parent: d8c6d34)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 10 Apr 2012 10:12:28 +0000 (10:12 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 10 Apr 2012 10:12:28 +0000 (10:12 +0000) |
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4/program@2286 a5681a0c-68f1-0310-ab6d-d61299d08faa
src/rrd_graph.c | patch | blob | history |
diff --git a/src/rrd_graph.c b/src/rrd_graph.c
index 5f70a3847b7ffd367699980f8dfd8eedc6672f7b..7afd5bb4fdeb7e2ff9d8b49b768753d2ceb12750 100644 (file)
--- a/src/rrd_graph.c
+++ b/src/rrd_graph.c
struct tm tm;
localtime_r(&start, &tm);
+ /* let mktime figure this dst on its own */
+ tm.tm_isdst = -1;
switch (baseint) {
case TMT_SECOND:
time_t madetime;
localtime_r(¤t, &tm);
+ /* let mktime figure this dst on its own */
+ tm.tm_isdst = -1;
int limit = 2;
switch (baseint) {