Ulrich Leodolter.
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7581
91ce42f0-d328-0410-95d8-
f526ca767f89
bool do_full = false;
bool do_diff = false;
time_t now;
- utime_t full_time;
+ utime_t last_full_time;
utime_t diff_time;
since[0] = 0;
}
if (have_full && jcr->job->MaxFullInterval > 0 &&
db_find_last_job_start_time(jcr, jcr->db, &jcr->jr, &stime, L_FULL)) {
- full_time = str_to_utime(stime);
- do_full = ((now - full_time) <= jcr->job->MaxFullInterval);
+ last_full_time = str_to_utime(stime);
+ do_full = ((now - last_full_time) >= jcr->job->MaxFullInterval);
}
free_pool_memory(stime);
General:
09Sep08
+kes Correct tests for MaxFullInterval as reported by
+ Ulrich Leodolter.
kes Enable Win32 plugin load code in lib.
kes Make Verify code that computes disk checksums use the same
algorithm as backup when dealing with sparse files.