Fixed module_crontab in windows agent on minutes wildcard

This commit is contained in:
fermin831 2018-10-18 18:01:36 +02:00
parent 9eefa6ff85
commit cde7e011a5
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 * @return false if should not execute
*/ */
bool Cron::shouldExecuteAt (time_t date) { bool Cron::shouldExecuteAt (time_t date) {
return this->utimestamp < date; return this->utimestamp <= date;
} }
/** /**