diff --git a/pandora_agents/win32/misc/cron.cc b/pandora_agents/win32/misc/cron.cc index d712c2685c..2d3e5e0440 100644 --- a/pandora_agents/win32/misc/cron.cc +++ b/pandora_agents/win32/misc/cron.cc @@ -227,7 +227,7 @@ int Cron::getResetValue (int position) { * @return false if should not execute */ bool Cron::shouldExecuteAt (time_t date) { - return this->utimestamp < date; + return this->utimestamp <= date; } /**