From: Eric Bollengier Date: Sun, 11 May 2008 11:54:16 +0000 (+0000) Subject: ebl Use TCADB (disk and memory) instead of TCHDB (disk) X-Git-Tag: Release-3.0.0~1452 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ed18a00ef0fd59f6f47170ae07e9232245f87df8;p=bacula%2Fbacula ebl Use TCADB (disk and memory) instead of TCHDB (disk) git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6944 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/filed/filed.h b/bacula/src/filed/filed.h index ebf1d4438f..81a20fa0ca 100644 --- a/bacula/src/filed/filed.h +++ b/bacula/src/filed/filed.h @@ -35,8 +35,8 @@ #define FILE_DAEMON 1 -#ifdef USE_TCHDB /* hash disk based */ -# include +#ifdef USE_TCADB /* hash disk based */ +# include #else # include "lib/htable.h" #endif diff --git a/bacula/src/jcr.h b/bacula/src/jcr.h index 5adfc4af05..2ad419f19a 100644 --- a/bacula/src/jcr.h +++ b/bacula/src/jcr.h @@ -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