diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-26 17:15:18 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-26 17:15:18 +0000 |
commit | 793200e5e918a6e993ddf701967a8b6535a6828f (patch) | |
tree | e983c5b11c032a309edb230f8694225aef478d98 /db.cpp | |
parent | 6966768a554575ca329fbcd4aad0d4f21c702f9a (diff) |
bitcoind now compiles without wxWidgets or wxBase
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@112 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'db.cpp')
-rw-r--r-- | db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ CDB::CDB(const char* pszFile, const char* pszMode) : pdb(NULL) return;
string strDataDir = GetDataDir();
string strLogDir = strDataDir + "/database";
- _mkdir(strLogDir.c_str());
+ filesystem::create_directory(strLogDir.c_str());
string strErrorFile = strDataDir + "/db.log";
printf("dbenv.open strLogDir=%s strErrorFile=%s\n", strLogDir.c_str(), strErrorFile.c_str());
|