From 693f8cd5cd05f896fbf73e6b2d1f2fda4f458cce Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 8 Nov 2010 18:05:31 +0100 Subject: abrtd: remove support for ActionsAndReporters, abrt_event.conf supersedes it Signed-off-by: Denys Vlasenko --- src/daemon/Settings.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/daemon/Settings.cpp') 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) { -- cgit