From 9d2cb4518c3a8a72ccc714ddbc131aaa84506092 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 10 Nov 2010 00:10:22 +0100 Subject: Decouple settings handling from old-style plugins The breakage was discovered when i removed Logger class. it turned out the fix is somewhat involved. This change implements it as discussed with the rest of the team. Signed-off-by: Denys Vlasenko --- src/daemon/Daemon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/daemon/Daemon.cpp') diff --git a/src/daemon/Daemon.cpp b/src/daemon/Daemon.cpp index 0aa04a30..a30b2d97 100644 --- a/src/daemon/Daemon.cpp +++ b/src/daemon/Daemon.cpp @@ -666,8 +666,8 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin const char *uid_str = get_crash_data_item_content(crashinfo, CD_UID).c_str(); /* Send dbus signal */ - if (analyzer_has_InformAllUsers(analyzer)) - uid_str = NULL; + //if (analyzer_has_InformAllUsers(analyzer)) + // uid_str = NULL; char *crash_id = xasprintf("%s:%s", get_crash_data_item_content(crashinfo, CD_UID).c_str(), get_crash_data_item_content(crashinfo, CD_UUID).c_str() -- cgit