Skip to content

Commit

Permalink
Fix #1 for rrd 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Dec 2, 2022
1 parent 6d477a4 commit 00500ff
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions libexec/NfSenRRD.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!%%PERL%%
#
# Copyright (c) 2022, Peter Haag
# Copyright (c) 2004, SWITCH - Teleinformatikdienste fuer Lehre und Forschung
# All rights reserved.
#
Expand Down Expand Up @@ -27,11 +28,6 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# $Author: peter $
#
# $Id: NfSenRRD.pm 72 2017-01-22 13:04:08Z peter $
#
# $LastChangedRevision: 72 $

package NfSenRRD;

Expand Down Expand Up @@ -73,7 +69,7 @@ sub GetRRDoffset {
if ( $rrd_version < 1.1 ) { # it's RRD 1.0.x
$RRDoffset = 77;
}
if ( $rrd_version >= 1.2 && $rrd_version < 1.8 ) {
if ( $rrd_version >= 1.2 && $rrd_version < 1.9 ) {

This comment has been minimized.

Copy link
@VersusBG

VersusBG Nov 1, 2024

Contributor

Is there any issue with rrdtool-1.9.0?

$RRDoffset = 67;
}

Expand Down

0 comments on commit 00500ff

Please sign in to comment.