]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_sqlite3.cpp
Reserve ServerLimits::MaxLine instead of MAXBUF.
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlite3.cpp
index a35888cd68eb54ec6e3ef9b168546e4e1328c527..254adf1025ce98dbe3548106cfcd50c211d7837e 100644 (file)
@@ -85,7 +85,7 @@ class SQLConn : public SQLProvider
                std::string host = tag->getString("hostname");
                if (sqlite3_open_v2(host.c_str(), &conn, SQLITE_OPEN_READWRITE, 0) != SQLITE_OK)
                {
-                       ServerInstance->Logs->Log("m_sqlite3",LOG_DEFAULT, "WARNING: Could not open DB with id: " + tag->getString("id"));
+                       ServerInstance->Logs->Log("m_sqlite3", LOG_DEFAULT, "WARNING: Could not open DB with id: " + tag->getString("id"));
                        conn = NULL;
                }
        }