From 59ebe499412d7efae04722774031429afb113707 Mon Sep 17 00:00:00 2001 From: oetiker Date: Tue, 23 Jan 2007 20:52:35 +0000 Subject: [PATCH] the change from R920 to fetch was not helping ... no low res got prefered in non full coverage situations .. git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@976 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index 4831caa7..46a0e871 100644 --- a/program/src/rrd_fetch.c +++ b/program/src/rrd_fetch.c @@ -237,7 +237,7 @@ fprintf(stderr,"Considering: start %10lu end %10lu step %5lu ", tmp_step_diff = labs(*step - (rrd.stat_head->pdp_step * rrd.rra_def[i].pdp_cnt)); /* best full match */ - if(cal_end + (rrd.stat_head->pdp_step * rrd.rra_def[i].pdp_cnt) >= *end + if(cal_end >= *end && cal_start <= *start){ if (first_full || (tmp_step_diff < best_full_step_diff)){ first_full=0; -- 2.30.2