From: oetiker Date: Mon, 6 Nov 2006 06:53:13 +0000 (+0000) Subject: when fetching, don't pick a higher res rra just because it's coverage at the 'end... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5915a198f270afd4db54b8f17dab71c1a481cb1f;p=rrdtool-all.git 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@920 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index 96e2d14d..bd737796 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 >= *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;