From 9e27e7f39f1bf72f1bcc4f43322bdff7dee2609f Mon Sep 17 00:00:00 2001 From: oetiker Date: Mon, 25 Feb 2008 07:11:00 +0000 Subject: [PATCH] Ignore RRA-end when comparing. coverage. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1300 a5681a0c-68f1-0310-ab6d-d61299d08faa --- src/rrd_fetch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rrd_fetch.c b/src/rrd_fetch.c index 994c03c..0ae7cf2 100644 --- a/src/rrd_fetch.c +++ b/src/rrd_fetch.c @@ -260,7 +260,7 @@ int rrd_fetch_fn( tmp_step_diff = labs(*step - (rrd.stat_head->pdp_step * rrd.rra_def[i].pdp_cnt)); /* best full match */ - if (cal_end >= *end && cal_start <= *start) { + if (cal_start <= *start) { if (first_full || (tmp_step_diff < best_full_step_diff)) { first_full = 0; best_full_step_diff = tmp_step_diff; @@ -277,8 +277,6 @@ int rrd_fetch_fn( tmp_match = full_match; if (cal_start > *start) tmp_match -= (cal_start - *start); - if (cal_end < *end) - tmp_match -= (*end - cal_end); if (first_part || (best_match < tmp_match) || (best_match == tmp_match && -- 2.11.0