summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-20 15:23:07 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-20 15:23:07 +0100
commit2988152f5f3652a4fc83a0b6f2e3c4ca835a4460 (patch)
treebfe23da68c96858ed30133b445012d3bdea65324
parentfb801a10b15052ccc4cb216307bb8ddcdb4428f0 (diff)
downloadabrt-2988152f5f3652a4fc83a0b6f2e3c4ca835a4460.tar.gz
abrt-2988152f5f3652a4fc83a0b6f2e3c4ca835a4460.tar.xz
abrt-2988152f5f3652a4fc83a0b6f2e3c4ca835a4460.zip
bump text size threshold 1k -> 2k
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--lib/Utils/make_descr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Utils/make_descr.cpp b/lib/Utils/make_descr.cpp
index c4cc3f35..7f60c90f 100644
--- a/lib/Utils/make_descr.cpp
+++ b/lib/Utils/make_descr.cpp
@@ -52,7 +52,7 @@ static void add_content(bool &was_multiline, string& description, const char *he
}
/* Text attachments smaller than this will be also included in descrition */
-#define INLINE_TEXT_ATT_SIZE 1024
+#define INLINE_TEXT_ATT_SIZE (2*1024)
string make_description_bz(const map_crash_report_t& pCrashReport)
{