From b7124444f1d8853221d0fa511240bb10897a5c3e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 11 Oct 2010 19:23:40 +0200 Subject: 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 --- lib/plugins/CCpp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins/CCpp.cpp') 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); -- cgit