From: Kern Sibbald Date: Sat, 21 Jun 2003 21:48:42 +0000 (+0000) Subject: Fix typo X-Git-Tag: Release-1.31~51 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2810f27e89fc405994324859c8f3987663eb6b65;p=bacula%2Fbacula Fix typo git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@605 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/ReleaseNotes b/bacula/ReleaseNotes index cf010afc9c..cd7ea3caad 100644 --- a/bacula/ReleaseNotes +++ b/bacula/ReleaseNotes @@ -1,7 +1,7 @@ Release Notes for Bacula 1.31 - Bacula code: Total files = 251 Total lines = 74,587 (*.h *.c *.in) + Bacula code: Total files = 251 Total lines = 74,714 (*.h *.c *.in) Major Changes this Release: - The database format has changed. Please see below. @@ -15,13 +15,19 @@ Major Changes this Release: and underscore. - Added readline to depkgs (removed from depkgs1) and fixed configuration if it is not installed in your system libraries. -- Implemented generalized tape label formats including counter variables. +- Implemented generalized tape label formats including counter variables + for automatic naming of Volumes. - Multiple simultaneous jobs now work. - Implemented tape block rejection, which means that restores with several incremental backups will run orders of magnitude faster. Other Changes this Release: +- The new console var command allows testing variable expansion + used in automatic tape name generation. +- The new console estimate command allows you to test FileSets + to see how many files and bytes will be saved and optionally + to have an "ls -l" style listing of the files. - During a normal restore (replace = yes), any existing file is deleted and the restored file is then created. This corrects links and other wierd files that changed between the backup and the restore. diff --git a/bacula/src/filed/estimate.c b/bacula/src/filed/estimate.c index fe4cfdcb86..679f9fe4eb 100644 --- a/bacula/src/filed/estimate.c +++ b/bacula/src/filed/estimate.c @@ -56,7 +56,7 @@ static int tally_file(FF_PKT *ff_pkt, void *ijcr) JCR *jcr = (JCR *)ijcr; ATTR attr; - if (job_canceled(jcr) { + if (job_canceled(jcr)) { return 0; } switch (ff_pkt->type) {