From fd5c97267cda4cfbc23e367fc1338aa0988a8b44 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 3 Mar 2011 13:35:15 +0100 Subject: remove FILENAME_REPRODUCE field. FILENAME_COMMENT should be used instead Signed-off-by: Denys Vlasenko --- src/daemon/CommLayerServerDBus.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/daemon/CommLayerServerDBus.cpp') diff --git a/src/daemon/CommLayerServerDBus.cpp b/src/daemon/CommLayerServerDBus.cpp index 133feb7b..386b5872 100644 --- a/src/daemon/CommLayerServerDBus.cpp +++ b/src/daemon/CommLayerServerDBus.cpp @@ -219,7 +219,6 @@ static int handle_Report(DBusMessage* call, DBusMessage* reply) map_map_string_t user_conf_data; vector_string_t events; const char* comment = NULL; - const char* reproduce = NULL; const char* errmsg = NULL; DBusMessageIter in_iter; @@ -235,15 +234,10 @@ static int handle_Report(DBusMessage* call, DBusMessage* reply) } //TODO? get_crash_item_content_or_die_or_empty? comment = get_crash_item_content_or_NULL(crash_data, FILENAME_COMMENT) ? : ""; - reproduce = get_crash_item_content_or_NULL(crash_data, FILENAME_REPRODUCE) ? : ""; if (strlen(comment) > LIMIT_MESSAGE) { errmsg = _("Comment is too long"); } - else if (strlen(reproduce) > LIMIT_MESSAGE) - { - errmsg = _("'How to reproduce' is too long"); - } if (errmsg) { dbus_message_unref(reply); -- cgit