Merge branch 'ent-2770-i6381-comportamiento-anomalo-de-module_crontab' into 'develop'

Fixed module_crontab in windows agent on minutes wildcard

See merge request artica/pandorafms!1871
This commit is contained in:
vgilc 2018-10-25 11:53:26 +02:00
commit 179cd9453f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
/**