diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-11 19:23:40 +0200 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-11 19:23:40 +0200 |
| commit | b7124444f1d8853221d0fa511240bb10897a5c3e (patch) | |
| tree | 93e5f88b9d3c788f487657a2d99ba74bfd7a9a94 /lib/plugins | |
| parent | 289a4addf475abec3d0e24ee2e96f772de615b15 (diff) | |
| download | abrt-b7124444f1d8853221d0fa511240bb10897a5c3e.tar.gz abrt-b7124444f1d8853221d0fa511240bb10897a5c3e.tar.xz abrt-b7124444f1d8853221d0fa511240bb10897a5c3e.zip | |
s/CD_DUPHASH/FILENAME_DUPHASH/g
This is needed to make duplicate hash visible for separate programs
looking at crash dumps.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'lib/plugins')
| -rw-r--r-- | lib/plugins/Bugzilla.cpp | 4 | ||||
| -rw-r--r-- | lib/plugins/CCpp.cpp | 4 | ||||
| -rw-r--r-- | lib/plugins/RHTSupport.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/plugins/Bugzilla.cpp b/lib/plugins/Bugzilla.cpp index b3a00e13..6b6591ee 100644 --- a/lib/plugins/Bugzilla.cpp +++ b/lib/plugins/Bugzilla.cpp @@ -390,7 +390,7 @@ xmlrpc_int32 ctx::new_bug(const map_crash_data_t& pCrashData, int depend_on_bugn const char *component = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_COMPONENT); const char *release = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_RELEASE); const char *arch = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_ARCHITECTURE); - const char *duphash = get_crash_data_item_content_or_NULL(pCrashData, CD_DUPHASH); + const char *duphash = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_DUPHASH); const char *reason = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_REASON); const char *function = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_CRASH_FUNCTION); @@ -689,7 +689,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData, } const char *component = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_COMPONENT); - const char *duphash = get_crash_data_item_content_or_NULL(pCrashData, CD_DUPHASH); + const char *duphash = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_DUPHASH); const char *release = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_RELEASE); ctx bz_server(bugzilla_xmlrpc, ssl_verify); diff --git a/lib/plugins/CCpp.cpp b/lib/plugins/CCpp.cpp index a83a2b23..48bbbb5d 100644 --- a/lib/plugins/CCpp.cpp +++ b/lib/plugins/CCpp.cpp @@ -459,9 +459,9 @@ string CAnalyzerCCpp::GetGlobalUUID(const char *pDebugDumpDir) if (!dd_opendir(dd, pDebugDumpDir, DD_CLOSE_ON_OPEN_ERR)) return string(""); - if (dd_exist(dd, FILENAME_GLOBAL_UUID)) + if (dd_exist(dd, FILENAME_DUPHASH)) { - char *uuid = dd_load_text(dd, FILENAME_GLOBAL_UUID); + char *uuid = dd_load_text(dd, FILENAME_DUPHASH); dd_close(dd); string ret = uuid; free(uuid); diff --git a/lib/plugins/RHTSupport.cpp b/lib/plugins/RHTSupport.cpp index 94615fe9..016d5a91 100644 --- a/lib/plugins/RHTSupport.cpp +++ b/lib/plugins/RHTSupport.cpp @@ -128,7 +128,7 @@ string CReporterRHticket::Report(const map_crash_data_t& pCrashData, // const string& component = get_crash_data_item_content(pCrashData, FILENAME_COMPONENT); // const string& release = get_crash_data_item_content(pCrashData, FILENAME_RELEASE); // const string& arch = get_crash_data_item_content(pCrashData, FILENAME_ARCHITECTURE); -// const string& duphash = get_crash_data_item_content(pCrashData, CD_DUPHASH); +// const string& duphash = get_crash_data_item_content(pCrashData, FILENAME_DUPHASH); const char *reason = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_REASON); const char *function = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_CRASH_FUNCTION); |
