summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Bugzilla.cpp
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-01-21 16:41:03 +0100
committerKarel Klic <kklic@redhat.com>2010-01-21 16:41:03 +0100
commit44d7d1e6acb25dc719838560b002514fc51b62c3 (patch)
treecfe5b65535df09f70838dfdcb4f45038fd5aa2b7 /lib/Plugins/Bugzilla.cpp
parent9774d96f40919e6b7dccb55739bb4ed52c0b90ba (diff)
parent3d7774875fab22b5fa9e21767c57be54e96ebaeb (diff)
downloadabrt-44d7d1e6acb25dc719838560b002514fc51b62c3.tar.gz
abrt-44d7d1e6acb25dc719838560b002514fc51b62c3.tar.xz
abrt-44d7d1e6acb25dc719838560b002514fc51b62c3.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'lib/Plugins/Bugzilla.cpp')
-rw-r--r--lib/Plugins/Bugzilla.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index aafa019..f0e366b 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -287,7 +287,7 @@ uint32_t ctx::new_bug(const map_crash_data_t& pCrashData)
const std::string& component = get_crash_data_item_content(pCrashData, FILENAME_COMPONENT);
const std::string& release = get_crash_data_item_content(pCrashData, FILENAME_RELEASE);
const std::string& arch = get_crash_data_item_content(pCrashData, FILENAME_ARCHITECTURE);
- const std::string& uuid = get_crash_data_item_content(pCrashData, CD_UUID);
+ const std::string& uuid = get_crash_data_item_content(pCrashData, CD_DUPHASH);
std::string summary = "[abrt] crash in " + package;
std::string status_whiteboard = "abrt_hash:" + uuid;
@@ -434,7 +434,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData,
}
const std::string& component = get_crash_data_item_content(pCrashData, FILENAME_COMPONENT);
- const std::string& uuid = get_crash_data_item_content(pCrashData, CD_UUID);
+ const std::string& uuid = get_crash_data_item_content(pCrashData, CD_DUPHASH);
try
{
ctx bz_server(BugzillaXMLRPC.c_str(), NoSSLVerify);