From 577c5c94d26c8193ea45f7d622276c7ceb39d66e 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/program@174 a5681a0c-68f1-0310-ab6d-d61299d08faa --- src/rrd_graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rrd_graph.c b/src/rrd_graph.c index a037563..5060733 100644 --- a/src/rrd_graph.c +++ b/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.11.0