From 7ed025898732d2e8fbbea4e2f1c2fb9cbf74892b Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Tue, 29 Jul 2003 18:54:07 +0000 Subject: [PATCH] Update manual git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@651 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/ReleaseNotes | 7 +++++-- bacula/src/bc_types.h | 9 +++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bacula/ReleaseNotes b/bacula/ReleaseNotes index c07e5ce1af..79389e9ada 100644 --- a/bacula/ReleaseNotes +++ b/bacula/ReleaseNotes @@ -1,7 +1,7 @@ Release Notes for Bacula 1.31 - Bacula code: Total files = 258 Total lines = 76,596 (*.h *.c *.in) + Bacula code: Total files = 258 Total lines = 76,670 (*.h *.c *.in) Major Changes this Release: - Implemented a new job scheduling algorithm with priorities. @@ -71,9 +71,12 @@ Other Changes this Release: Items to note: !!!!! - Recycle Oldest Volume has changed to be Purge Oldest Volume - Please change your Director's .conf file. + Please change your Director's .conf file. Recycle Oldest Volume + still works but respects retention periods. + - The default time interval is now days instead of seconds. Please check your .conf files! + - For MySQL users, you must have the thread safe client libraries available. If you build MySQL yourself, add the --enable-thread-safe-client option on the ./configure. You will most likely need to do an ldconfig. diff --git a/bacula/src/bc_types.h b/bacula/src/bc_types.h index e55b377bb2..f08027e26d 100644 --- a/bacula/src/bc_types.h +++ b/bacula/src/bc_types.h @@ -40,11 +40,12 @@ typedef char POOLMEM; #define mp_chr(x) x -#ifdef xxxxx +#ifdef xxxxx #define mp_chr(x) ((char*)(x)) -struct POOLMEM { - POOLMEM() {} - operator const char*() const { return (char *)this; } +class POOLMEM { +public: + POOLMEM() { } + operator char * const() { return this; } }; #endif -- 2.39.5