summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-10-14 10:48:13 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-10-14 10:48:13 +0200
commitecad523ee75d904a570fdec4f07c91dea04e9995 (patch)
tree5fbccd9de96d028d07f2b8cd6a238c1b59e8c258 /inc
parent50bdaf1bebd3aedb6405fb69cbc1e53ece82e8f7 (diff)
downloadabrt-ecad523ee75d904a570fdec4f07c91dea04e9995.tar.gz
abrt-ecad523ee75d904a570fdec4f07c91dea04e9995.tar.xz
abrt-ecad523ee75d904a570fdec4f07c91dea04e9995.zip
move uuid generation for CCpp to a separate program (abrt-action-analyze-c)
This patch splits off uuid generation for CCpp to a separate program: Usage: abrt-action-analyze-c [-v] -d DIR Calculates and saves UUID -v, --verbose be verbose -d DIR Crash dump directory Run tested. Thus, now entire cycle of coredump processing/reporting consists of external programs: abrt-action-analyze-c abrt-action-save-package-data abrt-action-install-debuginfo abrt-action-generate-backtrace abrt-action-bugzilla Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'inc')
-rw-r--r--inc/crash_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/crash_types.h b/inc/crash_types.h
index c89c9a78..8185edf4 100644
--- a/inc/crash_types.h
+++ b/inc/crash_types.h
@@ -62,8 +62,9 @@
// dump directory is created before its DB entry, and DB has to learn
// CD_UID from _somewhere_ in order to be able to store it in DB record,
// right?)
-#define CD_UID "uid" /* lowercase: compat with older versions */
-#define CD_UUID "UUID"
+#define CD_UID "uid"
+/* CCpp is converted to save uuid as a file (python and oops aren't yet): */
+#define CD_UUID "uuid"
#define CD_INFORMALL "InformAll"
#define CD_DUMPDIR "DumpDir"
#define CD_COUNT "Count"