diff -ru nfsen-1.3.8/install.pl nfsen-1.3.8-patched/install.pl --- nfsen-1.3.8/install.pl 2017-01-19 16:16:21.000000000 +0000 +++ nfsen-1.3.8-patched/install.pl 2022-05-03 17:23:08.373680975 +0000 @@ -553,7 +553,7 @@ if( ! -f "$NfConf::PROFILEDATADIR/$profilepath/$channel/.nfstat") { # no shadow profile, but missing channel stat print "Rebuilding profile stats for '$profilegroup/$profilename'\n"; - NfProfile::DoRebuild(\%profileinfo, $profilename, $profilegroup, $profilepath, 1, 0); + NfProfile::DoRebuild(*STDOUT,\%profileinfo, $profilename, $profilegroup, $profilepath, 1, 0); NfProfile::WriteProfile(\%profileinfo); } # make sure it's own by nfsen_uid after the rebuild diff -ru nfsen-1.3.8/libexec/NfProfile.pm nfsen-1.3.8-patched/libexec/NfProfile.pm --- nfsen-1.3.8/libexec/NfProfile.pm 2014-06-23 19:27:50.000000000 +0000 +++ nfsen-1.3.8-patched/libexec/NfProfile.pm 2022-05-03 17:22:48.949680478 +0000 @@ -3441,7 +3441,7 @@ } else { $profileinfo{'type'} = 1; } - my $status = DoRebuild(\%profileinfo, $profile, $profilegroup, $profilepath, 0, 0); + my $status = DoRebuild(*STDOUT, \%profileinfo, $profile, $profilegroup, $profilepath, 0, 0); syslog('err', "Rebuilded profile '$profile' in group '$profilegroup': $status "); } if ( -f "$NfConf::PROFILESTATDIR/$profilepath/.CANCELED" ) { @@ -3453,7 +3453,7 @@ } else { $profileinfo{'type'} = 1; } - my $status = DoRebuild(\%profileinfo, $profile, $profilegroup, $profilepath, 0, 0); + my $status = DoRebuild(*STDOUT, \%profileinfo, $profile, $profilegroup, $profilepath, 0, 0); syslog('err', "Rebuilded profile '$profile' in group '$profilegroup': $status "); } if ( $profileinfo{'locked'} ) { diff -ru nfsen-1.3.8/libexec/NfSenRRD.pm nfsen-1.3.8-patched/libexec/NfSenRRD.pm --- nfsen-1.3.8/libexec/NfSenRRD.pm 2017-01-22 13:04:08.000000000 +0000 +++ nfsen-1.3.8-patched/libexec/NfSenRRD.pm 2022-05-03 17:17:09.137671798 +0000 @@ -73,7 +73,7 @@ if ( $rrd_version < 1.1 ) { # it's RRD 1.0.x $RRDoffset = 77; } - if ( $rrd_version >= 1.2 && $rrd_version < 1.6 ) { + if ( $rrd_version >= 1.2 && $rrd_version < 1.8 ) { $RRDoffset = 67; }