diff options
| author | Karel Klic <kklic@redhat.com> | 2010-01-21 16:41:03 +0100 |
|---|---|---|
| committer | Karel Klic <kklic@redhat.com> | 2010-01-21 16:41:03 +0100 |
| commit | 44d7d1e6acb25dc719838560b002514fc51b62c3 (patch) | |
| tree | cfe5b65535df09f70838dfdcb4f45038fd5aa2b7 /src/CLI/report.cpp | |
| parent | 9774d96f40919e6b7dccb55739bb4ed52c0b90ba (diff) | |
| parent | 3d7774875fab22b5fa9e21767c57be54e96ebaeb (diff) | |
| download | abrt-44d7d1e6acb25dc719838560b002514fc51b62c3.tar.gz abrt-44d7d1e6acb25dc719838560b002514fc51b62c3.tar.xz abrt-44d7d1e6acb25dc719838560b002514fc51b62c3.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/report.cpp')
| -rw-r--r-- | src/CLI/report.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/CLI/report.cpp b/src/CLI/report.cpp index 11037ca..76cd3d5 100644 --- a/src/CLI/report.cpp +++ b/src/CLI/report.cpp @@ -192,13 +192,13 @@ static void write_crash_report(const map_crash_data_t &report, FILE *fp) fprintf(fp, "# Please check this report. Lines starting with '#' will be ignored.\n" "# Lines starting with '%%----' separate fields, please do not delete them.\n\n"); - write_crash_report_field(fp, report, CD_COMMENT, + write_crash_report_field(fp, report, FILENAME_COMMENT, _("# Describe the circumstances of this crash below.")); - write_crash_report_field(fp, report, CD_REPRODUCE, + write_crash_report_field(fp, report, FILENAME_REPRODUCE, _("# How to reproduce the crash?")); write_crash_report_field(fp, report, FILENAME_BACKTRACE, _("# Stack trace: a list of active stack frames at the time the crash occurred\n# Check that it does not contain any sensitive data such as passwords.")); - write_crash_report_field(fp, report, CD_UUID, _("# UUID")); + write_crash_report_field(fp, report, CD_DUPHASH, "# DUPHASH"); write_crash_report_field(fp, report, FILENAME_ARCHITECTURE, _("# Architecture")); write_crash_report_field(fp, report, FILENAME_CMDLINE, _("# Command line")); write_crash_report_field(fp, report, FILENAME_COMPONENT, _("# Component")); @@ -282,10 +282,10 @@ static int read_crash_report_field(const char *text, map_crash_data_t &report, static int read_crash_report(map_crash_data_t &report, const char *text) { int result = 0; - result |= read_crash_report_field(text, report, CD_COMMENT); - result |= read_crash_report_field(text, report, CD_REPRODUCE); + result |= read_crash_report_field(text, report, FILENAME_COMMENT); + result |= read_crash_report_field(text, report, FILENAME_REPRODUCE); result |= read_crash_report_field(text, report, FILENAME_BACKTRACE); - result |= read_crash_report_field(text, report, CD_UUID); + result |= read_crash_report_field(text, report, CD_DUPHASH); result |= read_crash_report_field(text, report, FILENAME_ARCHITECTURE); result |= read_crash_report_field(text, report, FILENAME_CMDLINE); result |= read_crash_report_field(text, report, FILENAME_COMPONENT); |
