summaryrefslogtreecommitdiff
path: root/src/core/dbus-manager.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-11-21 21:32:23 +0100
committerLennart Poettering <lennart@poettering.net>2013-11-21 21:32:23 +0100
commit1302759d1581a4df0259cd4499a0908dad5f8b77 (patch)
treebbd13fe1779376c8ffc367403ea5dca175cdcff4 /src/core/dbus-manager.c
parentceb19081fec38003064bcbc3aa3fcbdcf478a797 (diff)
core: fix serilization of ListJobs() response
Diffstat (limited to 'src/core/dbus-manager.c')
-rw-r--r--src/core/dbus-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
index b284c5e197..6002d02c5b 100644
--- a/src/core/dbus-manager.c
+++ b/src/core/dbus-manager.c
@@ -774,8 +774,9 @@ static int method_list_jobs(sd_bus *bus, sd_bus_message *message, void *userdata
r = sd_bus_message_append(
reply, "(usssoo)",
j->id,
- job_state_to_string(j->state),
+ j->unit->id,
job_type_to_string(j->type),
+ job_state_to_string(j->state),
job_path,
unit_path);
if (r < 0)