From: Kern Sibbald Date: Sun, 3 Oct 2004 19:49:56 +0000 (+0000) Subject: Final changes X-Git-Tag: Release-7.0.0~9151 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=aaa5e1a0aab16ffeaa82f03ad684ebc79522e30b;p=bacula%2Fbacula Final changes git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1628 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/ChangeLog b/bacula/ChangeLog index 010001bae1..440bb3e449 100644 --- a/bacula/ChangeLog +++ b/bacula/ChangeLog @@ -1,4 +1,9 @@ +Changes to 1.35.7: +03Oct04 +- Apply Martin's patch that puts back the run pool override + code -- dumb me for removing it. + Changes to 1.35.6: 02Oct04 - Create patches/README and the patch summary file. diff --git a/bacula/ReleaseNotes b/bacula/ReleaseNotes index 7a56dff35d..25c24f51ca 100644 --- a/bacula/ReleaseNotes +++ b/bacula/ReleaseNotes @@ -1,10 +1,10 @@ - Release Notes for Bacula 1.35.6 + Release Notes for Bacula 1.35.7 Bacula code: Total files = 396 Total lines = 116,116 (*.h *.c *.in) -Changes for 1.35.6 +Changes for 1.35.7 Major Changes: - Tray monitor program - Bacula Rescue CDROM diff --git a/bacula/src/dird/scheduler.c b/bacula/src/dird/scheduler.c index 9beb9863db..f32a633179 100644 --- a/bacula/src/dird/scheduler.c +++ b/bacula/src/dird/scheduler.c @@ -147,6 +147,15 @@ JCR *wait_for_next_job(char *one_shot_job_to_run) if (run->pool) { jcr->pool = run->pool; /* override pool */ } + if (run->full_pool) { + jcr->full_pool = run->full_pool; /* override full pool */ + } + if (run->inc_pool) { + jcr->inc_pool = run->inc_pool; /* override inc pool */ + } + if (run->dif_pool) { + jcr->dif_pool = run->dif_pool; /* override dif pool */ + } if (run->storage) { jcr->store = run->storage; /* override storage */ } diff --git a/bacula/src/version.h b/bacula/src/version.h index f499ef9438..3e3a7079a5 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -1,8 +1,8 @@ /* */ #undef VERSION #define VERSION "1.35.6" -#define BDATE "02 October 2004" -#define LSMDATE "02Oct04" +#define BDATE "03 October 2004" +#define LSMDATE "03Oct04" /* Debug flags */ #undef DEBUG