소스 검색

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, "