From ab77c9e378c902765e74cee70bdb92940520ee70 Mon Sep 17 00:00:00 2001 From: oetiker Date: Mon, 6 Nov 2006 06:53:13 +0000 Subject: [PATCH] when fetching, don't pick a higher res rra just because it's coverage at the 'end' of the requested range is better ... -- Sebastian Pachuta seba123 seba123.webd.pl git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@920 a5681a0c-68f1-0310-ab6d-d61299d08faa --- src/rrd_fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rrd_fetch.c b/src/rrd_fetch.c index 96e2d14..bd73779 100644 --- a/src/rrd_fetch.c +++ b/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 >= *end + if(cal_end + (rrd.stat_head->pdp_step * rrd.rra_def[i].pdp_cnt) >= *end && cal_start <= *start){ if (first_full || (tmp_step_diff < best_full_step_diff)){ first_full=0; -- 2.11.0