Fixed zeek::filesystem::path conversion to string

This commit is contained in:
Elad Solomon 2022-09-08 19:56:46 +03:00 committed by Tomer Lev
parent dbaf6696ef
commit 4043b67e0b
2 changed files with 6 additions and 6 deletions

View file

@ -147,7 +147,7 @@ bool SQLite::DoInit(const WriterInfo& info, int arg_num_fields, const Field* con
tablename = it->second;
if ( checkError(sqlite3_open_v2(
fullpath.c_str(), &db,
fullpath.string().c_str(), &db,
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_NOMUTEX, NULL)) )
return false;