diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-02-16 14:37:44 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-02-16 14:37:44 +0100 |
| commit | 099b99f3efae13bc5085d36dcbced089e46b4e9b (patch) | |
| tree | 78fc7fb7e4c2aebd6fce06eaad5cc3b762125d22 /src/cli/report.cpp | |
| parent | 0bca10149e965761a76fc8556c35853b2c6cd27a (diff) | |
| parent | a330886781635606626b3b91432525128d0e8a8f (diff) | |
| download | abrt-099b99f3efae13bc5085d36dcbced089e46b4e9b.tar.gz abrt-099b99f3efae13bc5085d36dcbced089e46b4e9b.tar.xz abrt-099b99f3efae13bc5085d36dcbced089e46b4e9b.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, 0 insertions, 12 deletions
diff --git a/src/cli/report.cpp b/src/cli/report.cpp index 7f317f05..6b2bf2e2 100644 --- a/src/cli/report.cpp +++ b/src/cli/report.cpp @@ -147,12 +147,6 @@ static void write_crash_report_field(FILE *fp, crash_data_t *crash_data, return; } - if (value->flags & CD_FLAG_SYS) - { - error_msg("Cannot update field %s because it is a system value", field); - return; - } - fprintf(fp, "%s%s\n", FIELD_SEP, field); fprintf(fp, "%s\n", description); @@ -226,12 +220,6 @@ static int read_crash_report_field(const char *text, crash_data_t *report, return 0; } - if (value->flags & CD_FLAG_SYS) - { - error_msg("Cannot update field %s because it is a system value", field); - return 0; - } - // Do not change noneditable fields. if (!(value->flags & CD_FLAG_ISEDITABLE)) return 0; |
