diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-24 01:04:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-24 01:04:31 +0200 |
commit | 825636e5a88338436a1cd910319d020038389187 (patch) | |
tree | de244a42faa6bcc7f5a71c24e30bc37ab48e4f97 /service.c | |
parent | 55e39f40f70e3e8476421b97c58ddb0a8c61a558 (diff) |
service: fix serialization of exec id
Diffstat (limited to 'service.c')
-rw-r--r-- | service.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1805,7 +1805,7 @@ static int service_serialize(Unit *u, FILE *f, FDSet *fds) { * commands attached here, we will start from the first one * again */ if (s->control_command_id >= 0) - unit_serialize_item(u, f, "control-command", mount_exec_command_to_string(s->control_command_id)); + unit_serialize_item(u, f, "control-command", service_exec_command_to_string(s->control_command_id)); if (s->socket_fd >= 0) { int copy; |