summaryrefslogtreecommitdiffstats
path: root/src/CLI/run-command.cpp
Commit message (Collapse)AuthorAgeFilesLines
* lower case direcotry(no code changed)Nikola Pajkovsky2010-08-101-73/+0
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* English and message format fixesDenys Vlasenko2010-06-301-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-38/+24
| | | | | | | | | | | | | | | 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-11/+11
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+87
multiple files for clarity.