]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Use TCADB (disk and memory) instead of TCHDB (disk)
authorEric Bollengier <eric@eb.homelinux.org>
Sun, 11 May 2008 11:54:16 +0000 (11:54 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sun, 11 May 2008 11:54:16 +0000 (11:54 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6944 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/filed/filed.h
bacula/src/jcr.h

index ebf1d4438fde90f4b00abc748a1bf340a7738fa1..81a20fa0ca632999087ffc5a4de580c6420c7979 100644 (file)
@@ -35,8 +35,8 @@
 
 
 #define FILE_DAEMON 1
-#ifdef USE_TCHDB                     /* hash disk based */
-# include <tchdb.h>
+#ifdef USE_TCADB                     /* hash disk based */
+# include <tcadb.h>
 #else
 # include "lib/htable.h"
 #endif
index 5adfc4af05f45255828df1ea7e7039bdbdda49bd..2ad419f19ac927d7e04d6bd1e60edb466bc412e4 100644 (file)
@@ -341,8 +341,9 @@ public:
    CRYPTO_CTX crypto;                 /* Crypto ctx */
    DIRRES* director;                  /* Director resource */
    bool VSS;                          /* VSS used by FD */
-#ifdef USE_TCHDB
-   TCHDB *file_list;                 /* Previous file list (accurate mode) */
+#ifdef USE_TCADB
+   TCADB *file_list;                 /* Previous file list (accurate mode) */
+   POOLMEM *hash_name;
 #else
    htable *file_list;                 /* Previous file list (accurate mode) */
 #endif