Changed code to use a single FlmDbSystem object. Fixed utilities so that they build using FTK.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@405 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-10 22:27:54 +00:00
parent 62e33bcd7d
commit 8df295d049
30 changed files with 289 additions and 447 deletions

View File

@@ -1180,7 +1180,6 @@ RCODE F_DbCheck::verifyBTrees(
char szTmpIoPath [F_PATH_MAX_SIZE];
char szBaseName [F_FILENAME_SIZE];
F_NodeVerifier * pNodeVerifier = NULL;
F_DbSystem dbSystem;
F_BLK_HDR * pBlkHdr = NULL;
F_CachedBlock * pSCache = NULL;
@@ -1197,7 +1196,7 @@ RCODE F_DbCheck::verifyBTrees(
// szTmpIoPath is the directory where the result sets containing
// node data will be stored.
if (RC_BAD( rc = dbSystem.getTempDir( szTmpIoPath)))
if (RC_BAD( rc = gv_pXFlmDbSystem->getTempDir( szTmpIoPath)))
{
if (rc == NE_FLM_IO_PATH_NOT_FOUND ||
rc == NE_FLM_IO_INVALID_FILENAME)