summaryrefslogtreecommitdiffstats
path: root/src/CLI/dbus.cpp
Commit message (Collapse)AuthorAgeFilesLines
* s/CC_DBUS_/ABRTD_DBUS_/gDenys Vlasenko2009-11-021-4/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-62/+61
| | | | | | | | | | | | | | | 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>
* Receive and print Warning and Update messages during remode procedure callsKarel Klic2009-10-301-10/+66
|
* fix warning and whitespace damageDenys Vlasenko2009-10-211-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* new_call_msg and send_get_reply_and_unref made staticKarel Klic2009-10-201-2/+2
|
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+130
multiple files for clarity.