summaryrefslogtreecommitdiffstats
path: root/src/CLI/report.cpp
Commit message (Collapse)AuthorAgeFilesLines
* abrt-cli: report success/failure of reporting. closes bug 71Denys Vlasenko2009-12-111-70/+80
| | | | | | See https://fedorahosted.org/abrt/ticket/71 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-27/+23
| | | | | | | | | | | | | | | The fix is: - const char *args[6]; - args[0] = editor; - args[1] = path; + char *args[3]; + args[0] = (char*)editor; + args[1] = (char*)path; + args[2] = NULL; run_command(args); Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix warning and whitespace damageDenys Vlasenko2009-10-211-39/+39
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Use defines instead of strings where possible.Karel Klic2009-10-211-22/+24
|
* Tell user about sending the report.Karel Klic2009-10-201-0/+6
|
* Inform whether some changes were detected in the crash report.Karel Klic2009-10-201-24/+84
|
* More comments.Karel Klic2009-10-201-4/+10
|
* Print error on unlink failure.Karel Klic2009-10-201-1/+2
|
* Code comments. Better UI texts.Karel Klic2009-10-201-27/+31
|
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+344
multiple files for clarity.