mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 18:35:11 +00:00
[FIX] Fix minor DB fuckup with tools
Used to open a flatfile database whenever it couldn't find an LMDB one, which obviously caused *problems*
This commit is contained in:
parent
c2536c2e84
commit
1936be0078
2 changed files with 20 additions and 21 deletions
|
|
@ -108,7 +108,7 @@ GetDB(char *config)
|
|||
{
|
||||
ret = DbOpenLMDB(db_path, lmdb_size);
|
||||
}
|
||||
if (!ret)
|
||||
else
|
||||
{
|
||||
ret = DbOpen(db_path, 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue