]> git.sur5r.net Git - bacula/bacula/commitdiff
Update manual
authorKern Sibbald <kern@sibbald.com>
Tue, 29 Jul 2003 18:54:07 +0000 (18:54 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 29 Jul 2003 18:54:07 +0000 (18:54 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@651 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ReleaseNotes
bacula/src/bc_types.h

index c07e5ce1af2d15445e38ed5808a0467da297f810..79389e9adae8d02ab9f65b46f78ee35185940eb9 100644 (file)
@@ -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.
index e55b377bb23d07457463a06dcc87f75b0d4b313c..f08027e26d41a0358488ac506d70b34f263910a0 100644 (file)
 
 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