ソースを参照

Fix: Type of pktsReceived is supposed to be INTEGER

Stefan Schmidt 6 年 前
コミット
e37394d479
1 ファイル変更1 行追加1 行削除
  1. 1 1
      code_boost/src/cxx/statistics_db.cpp

+ 1 - 1
code_boost/src/cxx/statistics_db.cpp

@@ -27,7 +27,7 @@ void statistics_db::writeStatisticsIP(std::unordered_map<std::string, entry_ipSt
         SQLite::Transaction transaction(*db);
         const char *createTable = "CREATE TABLE ip_statistics ( "
                 "ipAddress TEXT, "
-                "pktsReceived INTEGtimestampER, "
+                "pktsReceived INTEGER, "
                 "pktsSent INTEGER, "
                 "kbytesReceived REAL, "
                 "kbytesSent REAL, "