diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-02-18 11:57:56 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-02-18 11:57:56 +0100 |
| commit | 0979cbdd39166d6b5a42380e3ff6297e77d1236d (patch) | |
| tree | b6de00056eb26b5cd995db09b3dfcbb9ecbd21d6 /lib/Plugins/SQLite3.cpp | |
| parent | 5c22d0c110b8678509817abf9ecf10e3f48525d5 (diff) | |
| parent | 77ef93c89e3fa75d1a5c0f126bcbb001a152bacf (diff) | |
| download | abrt-0979cbdd39166d6b5a42380e3ff6297e77d1236d.tar.gz abrt-0979cbdd39166d6b5a42380e3ff6297e77d1236d.tar.xz abrt-0979cbdd39166d6b5a42380e3ff6297e77d1236d.zip | |
Merge branch 'master' of git://git.fedorahosted.org/git/crash-catcher
Diffstat (limited to 'lib/Plugins/SQLite3.cpp')
| -rw-r--r-- | lib/Plugins/SQLite3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Plugins/SQLite3.cpp b/lib/Plugins/SQLite3.cpp index c6cf8f4..f96f3fa 100644 --- a/lib/Plugins/SQLite3.cpp +++ b/lib/Plugins/SQLite3.cpp @@ -28,7 +28,7 @@ #define TABLE_NAME "CrashCatcher" CSQLite3::CSQLite3() : - m_sDBPath(""), + m_sDBPath("/tmp/CCDB"), m_pDB(NULL) {} @@ -79,7 +79,7 @@ void CSQLite3::GetTable(const std::string& pCommand, vector_database_rows_t& pTa break; case 1: row.m_sUID = table[jj + ncol]; break; - case 2: row.m_sDebugDumpPath = table[jj + ncol]; + case 2: row.m_sDebugDumpDir = table[jj + ncol]; break; case 3: row.m_sCount = table[jj + ncol]; break; |
