summaryrefslogtreecommitdiffstats
path: root/src/daemon/Settings.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-08 18:05:31 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-08 18:05:31 +0100
commit693f8cd5cd05f896fbf73e6b2d1f2fda4f458cce (patch)
treeb4be24b9080e15ae099d4931ea480b20e86d544c /src/daemon/Settings.cpp
parentf1bf98f5efd3535a264264d6f57b1826fcca4f25 (diff)
downloadabrt-693f8cd5cd05f896fbf73e6b2d1f2fda4f458cce.tar.gz
abrt-693f8cd5cd05f896fbf73e6b2d1f2fda4f458cce.tar.xz
abrt-693f8cd5cd05f896fbf73e6b2d1f2fda4f458cce.zip
abrtd: remove support for ActionsAndReporters, abrt_event.conf supersedes it
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/daemon/Settings.cpp')
-rw-r--r--src/daemon/Settings.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/daemon/Settings.cpp b/src/daemon/Settings.cpp
index 1be85954..0f358b2a 100644
--- a/src/daemon/Settings.cpp
+++ b/src/daemon/Settings.cpp
@@ -59,8 +59,6 @@ char *g_settings_sWatchCrashdumpArchiveDir = NULL;
unsigned int g_settings_nMaxCrashReportsSize = 1000;
bool g_settings_bProcessUnpackaged = false;
-/* one line: "ActionsAndReporters = aa_first,bb_first(bb_second),cc_first" */
-vector_pair_string_string_t g_settings_vectorActionsAndReporters;
/* [ AnalyzerActionsAndReporters ] */
/* many lines, one per key: "map_key = aa_first,bb_first(bb_second),cc_first" */
map_analyzer_actions_and_reporters_t g_settings_mapAnalyzerActionsAndReporters;
@@ -230,14 +228,6 @@ static int ParseCommon()
{
g_settings_nMaxCrashReportsSize = xatoi_u(it->second.c_str());
}
- it = s_mapSectionCommon.find("ActionsAndReporters");
- if (it != end)
- {
- int err = 0;
- g_settings_vectorActionsAndReporters = ParseListWithArgs(it->second.c_str(), &err);
- if (err)
- return err;
- }
it = s_mapSectionCommon.find("ProcessUnpackaged");
if (it != end)
{