From 175a010910d3e5438a84f0dcc0b041b0807b1bb3 Mon Sep 17 00:00:00 2001 From: oetiker Date: Wed, 29 Jan 2003 07:17:23 +0000 Subject: [PATCH] fixed the processing of TICK:vname#color:frac:legend -- Scott Mace git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@174 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index a0375630..5060733a 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -1008,7 +1008,7 @@ data_proc( image_desc_t *im ){ paintval = 0.0; case GF_STACK: value = im->gdes[ii].yrule; - if (isnan(value)) { /* not a number or VDEF */ + if (isnan(value) || (im->gdes[ii].gf == GF_TICK)) { /* The time of the data doesn't necessarily match ** the time of the graph. Beware. */ -- 2.30.2