From 91c72f83313cd39186f9e1a14c599d59fe5ae2f7 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 5 Mar 2015 16:48:25 +0100 Subject: [PATCH] Check for negative time increments in inc modules. --- pandora_server/lib/PandoraFMS/Core.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index a8160fcefb..e4cbd6e2ca 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -3460,7 +3460,7 @@ sub process_inc_data ($$$$$) { } # Negative increment, reset inc data - if ($data < $data_inc->{'datos'}) { + if ($data < $data_inc->{'datos'} || $utimestamp < $data_inc->{'utimestamp'}) { db_do ($dbh, 'UPDATE tagente_datos_inc SET datos = ?, utimestamp = ? WHERE id_agente_modulo = ?', $data, $utimestamp, $module->{'id_agente_modulo'}); logger($pa_config, "Discarding data and resetting counter for incremental module " . $module->{'nombre'} . "(module id " . $module->{'id_agente_modulo'} . ").", 10);