summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/SQLite3.cpp
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-02-18 10:08:45 +0100
committerZdenek Prikryl <zprikryl@redhat.com>2009-02-18 10:08:45 +0100
commit02210a03a15b733f8ecda7221c95fbe45b300af6 (patch)
tree6614fff9ca90df98ca6b2b7177de8606e469a048 /lib/Plugins/SQLite3.cpp
parent6aaeb6623eaa78f9a45f0f2c7b418939a1c4baf5 (diff)
downloadabrt-02210a03a15b733f8ecda7221c95fbe45b300af6.tar.gz
abrt-02210a03a15b733f8ecda7221c95fbe45b300af6.tar.xz
abrt-02210a03a15b733f8ecda7221c95fbe45b300af6.zip
added default values for settings
Diffstat (limited to 'lib/Plugins/SQLite3.cpp')
-rw-r--r--lib/Plugins/SQLite3.cpp4
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;